X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=devel%2Frelease-checks.sh;h=efd0b3441f2e9aecd7398cf941c1156eec77ff0d;hb=d4053be21acf4c3fce0b477e26eec95b42a36bd7;hp=797d62acfca12f08b7bdbc8e986747844fa8ccff;hpb=5608e39a6bed25e32678b08d8f5f90bc42f451f8;p=notmuch diff --git a/devel/release-checks.sh b/devel/release-checks.sh index 797d62ac..efd0b344 100755 --- a/devel/release-checks.sh +++ b/devel/release-checks.sh @@ -59,6 +59,17 @@ readonly VERSION # In the rest of this file, tests collect list of errors to be fixed +echo -n "Checking that git working directory is clean... " +git_status=`git status --porcelain` +if [ "$git_status" = '' ] +then + echo Yes. +else + echo No. + append_emsg "Git working directory is not clean (git status --porcelain)." +fi +unset git_status + verfail () { echo No. @@ -130,7 +141,7 @@ else fi echo -n "Checking that python bindings version is $VERSION... " -py_version=`python -c "execfile('$PV_FILE'); print __VERSION__"` +py_version=`python -c "with open('$PV_FILE') as vf: exec(vf.read()); print __VERSION__"` if [ "$py_version" = "$VERSION" ] then echo Yes.