stop if git tags were updated, allow non-force autoconf, enhanced build speed, include autostart instruction in postinst and adjusted start hint to systemd

This commit is contained in:
john30
2017-12-30 13:26:02 +01:00
parent 60a18d15e2
commit 88e4c7eec7
3 changed files with 69 additions and 13 deletions
+9 -2
View File
@@ -1,3 +1,10 @@
#!/bin/sh
./make_debian.sh
./make_debian.sh --without-mqtt
tags=`git fetch -t`
if [ -n "$tags" ]; then
echo "tags were updated:"
echo $tags
echo "git pull is recommended. stopped."
exit 1
fi
./make_debian.sh --keepbuilddir $@
./make_debian.sh --reusebuilddir --dontforce --without-mqtt $@