Skip to content

Commit 993a6b4

Browse files
committed
fix linting
1 parent dfb39a5 commit 993a6b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runCommands.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function runBinary(command) {
99
}
1010

1111
function normaliseCommands(commands) {
12-
return Array.isArray(commands) ? commands : [commands].filter(x => !!x);
12+
return Array.isArray(commands) ? commands : [commands].filter((x) => !!x);
1313
}
1414

1515
module.exports = function runCommands(commands) {

0 commit comments

Comments
 (0)