diff --git a/Makefile b/Makefile index 1561d84..d352360 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,15 @@ +# Simple makefile to create a tarball of the msman helper scripts + all: - cp -r .msman msman - tar -czf msman-hepler.tar.gz msman - rm -rf msman + source msman.sh + source .msman/version.sh + if [[ $CURRENT_SCRIPT_VERSION == $EXTRA_SCRIPTS_VERSION]]; then + cp -r .msman msman + tar -czf msman-hepler.tar.gz msman + rm -rf msman + else + echo "msman.sh and .msman/version.sh are not in sync" + fi clean: rm -rf msman diff --git a/msman-hepler.tar.gz b/msman-hepler.tar.gz new file mode 100644 index 0000000..fbbbd80 Binary files /dev/null and b/msman-hepler.tar.gz differ