Skip to content

Commit 1babe54

Browse files
authoredApr 26, 2023
fix: use a more portable means of spawning subshells (#306)
1 parent 7a2481c commit 1babe54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎bin/release-manager.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const DEFAULT_RELEASE_PROCESS = (args.publish ? AUTO_PUBLISH_STEPS : MANUAL_PUBL
6363
Release Please will run on the just pushed release commit and create GitHub releases and tags for each package.
6464
6565
\`\`\`
66-
gh run watch \`gh run list -R {NWO} -w release -b <BASE-BRANCH> -L 1 --json databaseId -q ".[0].databaseId"\`
66+
gh run watch $(gh run list -R {NWO} -w release -b <BASE-BRANCH> -L 1 --json databaseId -q ".[0].databaseId")
6767
\`\`\`
6868
`
6969
/* eslint-enable max-len */

0 commit comments

Comments
 (0)
Please sign in to comment.