prevent replacing bad versions
This commit is contained in:
parent
b37c2160b5
commit
880cdf60cb
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@
|
|||
function set_version {
|
||||
echo -n "Replacing version in source files"
|
||||
for fl in $(find . -iname "*.py"); do
|
||||
sed "s/\(VERSION\|version\|release\) *= *[\"'][0-9]\+\..\+[\"']/\1 = '$1'/g" $fl > $fl.new
|
||||
sed "s/\(VERSION\|version\|release\) *= *[\"'][0-9]\+\..\+[\"']$/\1 = '$1'/g" $fl > $fl.new
|
||||
diff $fl.new $fl >/dev/null && echo -n "." || echo -n "+"
|
||||
cp -f $fl.new $fl
|
||||
rm -f $fl.new
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue