Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eafe22e

Browse files
committed
Fix bug where --search-path cannot be used.
1 parent 180a1c3 commit eafe22e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "github-run-script",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Run a script on multiple repositories, cloning them if needed.",
55
"main": "dist/index.js",
66
"type": "commonjs",

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const cli = sade("github-run-script <script>", true)
1616
"A path to search for already-cloned repositories."
1717
)
1818
.option("-t, --terminate", "Terminate any spawned processes on error.")
19-
.option("-s, --signal", "The signal to terminate a process with.")
19+
.option("--signal", "The signal to terminate a process with.")
2020
.action(handler);
2121

2222
export default cli;

0 commit comments

Comments
 (0)