mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-18 10:52:19 +01:00
build/ship.sh: shellcheck fixes. (#30197)
Also add `set -e` so that if a command fails the whole script fails too.
This commit is contained in:
parent
d9215ebd5a
commit
8abccff7b3
@ -1,4 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
#
|
#
|
||||||
# Usage
|
# Usage
|
||||||
# ---------------
|
# ---------------
|
||||||
@ -18,35 +21,35 @@ end=$'\e[0m'
|
|||||||
current_version=$(node -p "require('./package.json').version")
|
current_version=$(node -p "require('./package.json').version")
|
||||||
|
|
||||||
if [[ $# -lt 1 ]]; then
|
if [[ $# -lt 1 ]]; then
|
||||||
printf "\n%s⚠️ Shipping aborted. You must specify a version.\n%s" $red $end
|
printf "\n%s⚠️ Shipping aborted. You must specify a version.\n%s" "$red" "$end"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Pulling latest changes, just to be sure
|
# Pulling latest changes, just to be sure
|
||||||
printf "\n%s=======================================================%s" $magenta $end
|
printf "\n%s=======================================================%s" "$magenta" "$end"
|
||||||
printf "\n%sPulling latest changes...%s" $magenta $end
|
printf "\n%sPulling latest changes...%s" "$magenta" "$end"
|
||||||
printf "\n%s=======================================================\n\n%s" $magenta $end
|
printf "\n%s=======================================================\n\n%s" "$magenta" "$end"
|
||||||
git pull origin master
|
git pull origin master
|
||||||
|
|
||||||
# Update version number
|
# Update version number
|
||||||
printf "\n%s=======================================================%s" $magenta $end
|
printf "\n%s=======================================================%s" "$magenta" "$end"
|
||||||
printf "\n%sUpdating version number...%s" $magenta $end
|
printf "\n%sUpdating version number...%s" "$magenta" "$end"
|
||||||
printf "\n%s=======================================================\n%s" $magenta $end
|
printf "\n%s=======================================================\n%s" "$magenta" "$end"
|
||||||
npm run release-version "$current_version" "$1"
|
npm run release-version "$current_version" "$1"
|
||||||
|
|
||||||
# Build release
|
# Build release
|
||||||
printf "\n%s=======================================================%s" $magenta $end
|
printf "\n%s=======================================================%s" "$magenta" "$end"
|
||||||
printf "\n%sBuilding release...%s" $magenta $end
|
printf "\n%sBuilding release...%s" "$magenta" "$end"
|
||||||
printf "\n%s=======================================================\n%s" $magenta $end
|
printf "\n%s=======================================================\n%s" "$magenta" "$end"
|
||||||
npm run release
|
npm run release
|
||||||
|
|
||||||
# Copy the contents of the built docs site over to `bs-docs` repo
|
# Copy the contents of the built docs site over to `bs-docs` repo
|
||||||
printf "\n%s=======================================================%s" $magenta $end
|
printf "\n%s=======================================================%s" "$magenta" "$end"
|
||||||
printf "\n%sCopy it over...%s" $magenta $end
|
printf "\n%sCopy it over...%s" "$magenta" "$end"
|
||||||
printf "\n%s=======================================================\n%s" $magenta $end
|
printf "\n%s=======================================================\n%s" "$magenta" "$end"
|
||||||
cp -rf _gh_pages/. ../bs-docs/
|
cp -rf _gh_pages/. ../bs-docs/
|
||||||
printf "\nDone!\n"
|
printf "\nDone!\n"
|
||||||
|
|
||||||
printf "\n%s=======================================================%s" $green $end
|
printf "\n%s=======================================================%s" "$green" "$end"
|
||||||
printf "\n%sSuccess, $1 is ready to review and publish.%s" $green $end
|
printf "\n%sSuccess, $1 is ready to review and publish.%s" "$green" "$end"
|
||||||
printf "\n%s=======================================================\n\n%s" $green $end
|
printf "\n%s=======================================================\n\n%s" "$green" "$end"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user