Merge branch 'storageareas' of github.com:connortechnology/ZoneMinder into storageareas

This commit is contained in:
Isaac Connor 2017-01-16 21:08:25 -05:00
commit 9afec3f78b
1 changed files with 7 additions and 0 deletions

View File

@ -184,6 +184,13 @@ if [ $TYPE == "binary" ]; then
if [ "$install" == "Y" ]; then if [ "$install" == "Y" ]; then
sudo dpkg -i $DIRECTORY*.deb sudo dpkg -i $DIRECTORY*.deb
fi; fi;
if [ "$DISTRO" == "jessie" ]; then
echo "Do you want to upload this binary to zmrepo? (y/N)"
read install
if [ "$install" == "Y" ]; then
scp "zoneminder_*-${VERSION}-${DISTRO}*" "zmrepo.connortechnology.com:zmrepo/debian-${BRANCH}/"
fi;
fi;
fi; fi;
else else
SC=""; SC="";