mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
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
|