diff options
Diffstat (limited to 'check_version')
-rw-r--r-- | check_version | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/check_version b/check_version new file mode 100644 index 0000000..e42a865 --- /dev/null +++ b/check_version @@ -0,0 +1,21 @@ +#!/bin/sh + +X=0 + +VER="$( sed -n '1s,.* v,,p' README )" +if [ "$VER" != "$1" ]; then + echo + echo "*** You forgot to update the version at the top of README" + echo + X=1 +fi + +VER="$( sed -n '/^\.\. |version| replace:: /s,.* ,,p' miragextract.rst )" +if [ "$VER" != "$1" ]; then + echo + echo "*** You forgot to update the version in miragextract.rst" + echo + X=1 +fi + +exit $X |