We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1d3f96 commit ed2111aCopy full SHA for ed2111a
scripts/release.sh
@@ -146,7 +146,7 @@ cat <<- EEOOFF
146
OPTIONS:
147
h Display this message (default)
148
f Force push to new repo branch (e.g., bump-v3.7.0)
149
- s Skip repo setup (e.g., to rebuild previously created repo)
+ s Skip new clone, clean, and install to rebuild previously created repo
150
v The version number (e.g., 3.7.0)
151
152
EEOOFF
@@ -197,8 +197,12 @@ verify()
197
198
bump_bower
199
bump_package
200
- clean
201
- install
+
+ if [ -z "$SETUP" ]; then
202
+ clean
203
+ install
204
+ fi
205
206
build
207
verify
208
0 commit comments