mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Fix args in the release wrapper script
It was assuming the version was always $1 which meant there was no way to pass options (eg. -x to skip changelog generation) through to the underlying release script without breaking the wrapper script.
This commit is contained in:
parent
864057e8ee
commit
7232c01a80
11
release.sh
11
release.sh
@ -7,6 +7,15 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
orig_args=$@
|
||||||
|
|
||||||
|
# chomp any args starting with '-' as these need to go
|
||||||
|
# through to the rleease script and otherwise we'll get
|
||||||
|
# confused about what the version arg is.
|
||||||
|
while [[ "$1" == -* ]]; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
cd `dirname $0`
|
cd `dirname $0`
|
||||||
|
|
||||||
for i in matrix-js-sdk matrix-react-sdk
|
for i in matrix-js-sdk matrix-react-sdk
|
||||||
@ -38,4 +47,4 @@ git commit package.json -m "$tag"
|
|||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
exec ./node_modules/matrix-js-sdk/release.sh -z "$@"
|
exec ./node_modules/matrix-js-sdk/release.sh -z "$orig_args"
|
||||||
|
Loading…
Reference in New Issue
Block a user