From 3247b5dab6e38277980ed5c501cd6c750597daec Mon Sep 17 00:00:00 2001
From: Jaime Perez Crespo <jaime.perez@uninett.no>
Date: Wed, 9 Mar 2016 10:19:28 +0100
Subject: [PATCH] Modify the build script to allow passing the source
 repository as a parameter.

---
 bin/build-release.sh | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/bin/build-release.sh b/bin/build-release.sh
index 0a981b53a..23ef38668 100755
--- a/bin/build-release.sh
+++ b/bin/build-release.sh
@@ -3,6 +3,7 @@
 set -e
 
 VERSION=$1
+REPOPATH=$2
 
 if ! shift; then
     echo "$0: Missing required version parameter." >&2
@@ -14,6 +15,10 @@ if [ -z "$VERSION" ]; then
     exit 1
 fi
 
+if [ -z "$REPO" ]; then
+    REPOPATH="https://github.com/simplesamlphp/simplesamlphp.git"
+fi
+
 TAG="v$VERSION"
 TARGET="simplesamlphp-$VERSION"
 
@@ -26,8 +31,6 @@ fi
 
 umask 0022
 
-REPOPATH="https://github.com/simplesamlphp/simplesamlphp.git"
-
 git clone $REPOPATH $TARGET
 cd $TARGET
 git checkout $TAG
-- 
GitLab