Skip to content

Commit 0e42cb6

Browse files
committedOct 23, 2020
fix: extra semicolon
1 parent f0d722f commit 0e42cb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/exec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const exec = (command, args, stdin, cwd) => {
1818
process.stdin.end()
1919
}
2020

21-
process.stdout.setEncoding('utf-8');
21+
process.stdout.setEncoding('utf-8')
2222
process.stdout.on('data', data => {
2323
stdout += data
2424
})

0 commit comments

Comments
 (0)
Please sign in to comment.