Merge branch 'master' of github.com:connortechnology/ZoneMinder

This commit is contained in:
Isaac Connor 2019-06-25 16:32:38 -04:00
commit c290170878
1 changed files with 20 additions and 16 deletions

View File

@ -30,6 +30,10 @@ case $i in
INTERACTIVE="${i#*=}" INTERACTIVE="${i#*=}"
shift # past argument=value shift # past argument=value
;; ;;
-p=*|--ppa=*)
PPA="${i#*=}"
shift # past argument=value
;;
-r=*|--release=*) -r=*|--release=*)
RELEASE="${i#*=}" RELEASE="${i#*=}"
shift shift
@ -120,7 +124,7 @@ else
fi; fi;
fi fi
PPA=""; if [ "$PPA" == "" ]; then
if [ "$RELEASE" != "" ]; then if [ "$RELEASE" != "" ]; then
# We need to use our official tarball for the original source, so grab it and overwrite our generated one. # We need to use our official tarball for the original source, so grab it and overwrite our generated one.
IFS='.' read -r -a VERSION <<< "$RELEASE" IFS='.' read -r -a VERSION <<< "$RELEASE"
@ -136,6 +140,7 @@ else
PPA="ppa:iconnor/zoneminder-$BRANCH"; PPA="ppa:iconnor/zoneminder-$BRANCH";
fi; fi;
fi; fi;
fi;
# Instead of cloning from github each time, if we have a fork lying around, update it and pull from there instead. # Instead of cloning from github each time, if we have a fork lying around, update it and pull from there instead.
if [ ! -d "${GITHUB_FORK}_zoneminder_release" ]; then if [ ! -d "${GITHUB_FORK}_zoneminder_release" ]; then
@ -327,6 +332,7 @@ EOF
dput $PPA $SC dput $PPA $SC
fi; fi;
else else
echo "dputting to $PPA";
dput $PPA $SC dput $PPA $SC
fi; fi;
fi; fi;
@ -339,5 +345,3 @@ if [ "$INTERACTIVE" != "no" ]; then
else else
rm -fr "$DIRECTORY.orig"; echo "The checked out copy has been deleted"; rm -fr "$DIRECTORY.orig"; echo "The checked out copy has been deleted";
fi fi