mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
da4fcfc857
* try using script for iap stub * typo * typo * typo * removed working dir * added comment to stub_iap.sh * checkout first * increment build number by script * Update increment_build_number.sh * fixed iap repo * stub
8 lines
248 B
Bash
8 lines
248 B
Bash
export newVersion="$1"
|
|
|
|
if [[ -n "$newVersion" ]]; then
|
|
#https://stackoverflow.com/a/30214769/13167574
|
|
perl -i -pe 's/^(version:\s+)(\d+\.\d+\.\d+)(\+)(\d+)$/$1.$ENV{'newVersion'}.$3.($4+1)/e' pubspec.yaml
|
|
else
|
|
echo "argument error"
|
|
fi
|