Skip to content

Commit b703baf

Browse files
authored
Add .sh extension to missing scripts (#339)
1 parent 790fa1a commit b703baf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"dev": "lerna run --parallel --scope @firebase/* --scope firebase dev",
1919
"prepare": "lerna run --scope @firebase/* --scope firebase prepare",
2020
"prepush": "node tools/gitHooks/prepush.js",
21-
"stage:packages": "./scripts/prepublish",
22-
"prepublish:packages": "./scripts/prepublish --prod",
23-
"publish:packages": "./scripts/publish",
21+
"stage:packages": "./scripts/prepublish.sh",
22+
"prepublish:packages": "./scripts/prepublish.sh --prod",
23+
"publish:packages": "./scripts/publish.sh",
2424
"repl": "node tools/repl.js",
2525
"pretest": "node tools/pretest.js",
2626
"test": "lerna run --parallel test",

scripts/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
99
export PATH="$(npm bin):$PATH";
1010

1111
# Run the publish script in each directory
12-
lerna exec --scope @firebase/* --scope firebase -- $DIR/try-publish
12+
lerna exec --scope @firebase/* --scope firebase -- $DIR/try-publish.sh

0 commit comments

Comments
 (0)