Skip to content

Commit 044059b

Browse files
committed
fix: execa usage
1 parent 462018e commit 044059b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/testing/testing-utils/cli/list-pkg-paths-changed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if (process.env.TRAVIS === 'true') {
3535
},
3636
].forEach(step => {
3737
console.log(step.label);
38-
const results = execa.shellSync(step.cmd);
38+
const results = execa.sync(step.cmd);
3939
if (results.failed) {
4040
console.error(`Uh oh, this Travis git step failed:`);
4141
console.log(results.stderr);

0 commit comments

Comments
 (0)