first load
This commit is contained in:
10
bin/update-manifest-version.sh
Normal file
10
bin/update-manifest-version.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
# EXIT ON ERROR
|
||||
set -e
|
||||
|
||||
# UPDATE MANIFEST VERSION
|
||||
NEW_VERSION=$1
|
||||
mv manifest.json manifest.temp.json
|
||||
jq -r '.version |= "'${NEW_VERSION}'"' manifest.temp.json > manifest.json
|
||||
rm manifest.temp.json
|
||||
Reference in New Issue
Block a user