We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32a08ea commit f0b25efCopy full SHA for f0b25ef
1 file changed
release.sh
@@ -5,7 +5,7 @@ echo -n "Enter the version for this release: "
5
6
read ver
7
8
-if [ ! $ver ]; then
+if [ ! $ver ]; then
9
echo "Invalid version."
10
exit
11
fi
@@ -28,11 +28,12 @@ git pull
28
29
echo "Updating Version Identifiers"
30
31
-sed -E -e "s/\"version\": \"([0-9\.]+)\",/\"version\": \"$ver\",/g" -i "" bower.json select2.jquery.json component.json composer.json
+sed -E -e "s/\"version\": \"([0-9\.]+)\",/\"version\": \"$ver\",/g" -i "" bower.json select2.jquery.json component.json composer.json package.json
32
git add bower.json
33
git add select2.jquery.json
34
git add component.json
35
git add composer.json
36
+git add package.json
37
git commit -m "modified version identifiers in descriptors for release $ver"
38
git push
39
0 commit comments