We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 864057e + d5a07a4 commit 2dc1c5cCopy full SHA for 2dc1c5c
release.sh
@@ -7,6 +7,15 @@
7
8
set -e
9
10
+orig_args=$@
11
+
12
+# chomp any args starting with '-' as these need to go
13
+# through to the release script and otherwise we'll get
14
+# confused about what the version arg is.
15
+while [[ "$1" == -* ]]; do
16
+ shift
17
+done
18
19
cd `dirname $0`
20
21
for i in matrix-js-sdk matrix-react-sdk
@@ -38,4 +47,4 @@ git commit package.json -m "$tag"
38
47
39
48
cd ..
40
49
41
-exec ./node_modules/matrix-js-sdk/release.sh -z "$@"
50
+exec ./node_modules/matrix-js-sdk/release.sh -z "$orig_args"
0 commit comments