Skip to content

Commit 2854438

Browse files
committed
leandrowdgh-422: Use node 10
1 parent 3e712c1 commit 2854438

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
language: node_js
22
node_js:
3-
- '8'
3+
- '10'

tasks/runShellCommand.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const { spawn } = require('child_process');
22

3-
module.exports = function (shellCommand, args, callback) {
3+
module.exports = function(shellCommand, args, callback) {
44
const command = spawn(shellCommand, args);
5-
5+
66
command.on('close', (code) => {
77
if (code !== 0) {
88
console.log(`command "${shellCommand}" exited with code ${code}`);

0 commit comments

Comments
 (0)