mirror of https://github.com/zulip/zulip.git
parent
3fbbfb8ad3
commit
f9ae386050
|
@ -1,8 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
set -eu -o pipefail
|
||||
|
||||
# shellcheck disable=SC2154 # expect this to run as NPM script
|
||||
: "${npm_package_version}"
|
||||
|
||||
should_color=
|
||||
if [ -t 2 ]; then # if we're sending to a terminal
|
||||
if [ -t 2 ]; then # if we're sending to a terminal
|
||||
should_color=yes
|
||||
fi
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
set -eu -o pipefail
|
||||
|
||||
# shellcheck disable=SC2154 # expect this to run as NPM script
|
||||
: "${npm_package_version}"
|
||||
|
||||
git commit -am "shared: Bump version to ${npm_package_version}"
|
||||
git tag "shared-${npm_package_version}"
|
||||
|
|
Loading…
Reference in New Issue