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

Skip to content

Commit 70cc388

Browse files
committed
Fix incorrect name for --search
1 parent eafe22e commit 70cc388

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
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.2",
3+
"version": "1.0.3",
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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ const cli = sade("github-run-script <script>", true)
1111
"-o, --owner",
1212
"The owner for repositories without an explicit owner."
1313
)
14-
.option(
15-
"-s, --search-path",
16-
"A path to search for already-cloned repositories."
17-
)
14+
.option("-s, --search", "A path to search for already-cloned repositories.")
1815
.option("-t, --terminate", "Terminate any spawned processes on error.")
1916
.option("--signal", "The signal to terminate a process with.")
2017
.action(handler);

0 commit comments

Comments
 (0)