Skip to content

Commit 2887b2c

Browse files
committed
Added increment_version.sh script
1 parent ff39ad7 commit 2887b2c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

increment_version.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
3+
if [ -z "$1" ]
4+
then
5+
echo "Usage: $0 [version_to_set]"
6+
exit 1
7+
fi
8+
9+
echo "\"$1\"" > src/ios-deploy/version.h
10+
npm version --no-git-tag-version $1

0 commit comments

Comments
 (0)