diff options
-rwxr-xr-x | bin/git-new.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/git-new.sh b/bin/git-new.sh index 6a5bcb5..72bb497 100755 --- a/bin/git-new.sh +++ b/bin/git-new.sh @@ -24,6 +24,18 @@ case "${DISTRIBUTION}" in SSH_OPTIONS="-o ControlMaster=no" ;; + *-security) + ORIGIN="debian-security" + BRANCH="progress-linux" + SSH_OPTIONS="-o ControlMaster=no" + ;; + + *-updates) + ORIGIN="debian-updates" + BRANCH="progress-linux" + SSH_OPTIONS="-o ControlMaster=no" + ;; + *-backports) ORIGIN="debian-backports" BRANCH="progress-linux" |