mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 23:10:40 +00:00
9 lines
248 B
Bash
9 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
|