Skip to content

Commit

Permalink
Merge pull request #8 from wenjinnn/main
Browse files Browse the repository at this point in the history
fix utils.execAsync example error
Aylur authored Jan 9, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 9a66e10 + cca09c6 commit 5cb4aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/docs/config/utils.md
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ meaning if you want to use `|` pipes or any other shell
operator then you have to run it with bash.

```js
Utils.execAsync(['bash', '-c', ['something | something && something']);
Utils.execAsync(['bash', '-c', 'something | something && something']);
Utils.exec('bash -c "something | something && something"');
```

0 comments on commit 5cb4aae

Please sign in to comment.