diff options
author | David Lawrence <dkl@mozilla.com> | 2015-07-17 00:11:36 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-07-17 00:12:06 +0200 |
commit | a124414c084218a07f9fddc056e4944fd62d9141 (patch) | |
tree | 4cd2f1f851c5566c518d626cec87879d29c3c7cb /docker | |
parent | 9e602998c9d47d66dc02a63f4cdb5f7be17feabc (diff) | |
download | bugzilla-a124414c084218a07f9fddc056e4944fd62d9141.tar.gz bugzilla-a124414c084218a07f9fddc056e4944fd62d9141.tar.xz |
Bug 1184755 - Update docker image runtests.sh to clone bmo git repo with full history instead of --depth=1
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/runtests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/runtests.sh b/docker/runtests.sh index b74359b04..f554b9b6b 100755 --- a/docker/runtests.sh +++ b/docker/runtests.sh @@ -15,7 +15,7 @@ exec > >(tee /runtests.log) 2>&1 echo "== Retrieving Bugzilla code" echo "Checking out $GITHUB_BASE_GIT $GITHUB_BASE_BRANCH ..." mv $BUGZILLA_ROOT "${BUGZILLA_ROOT}.back" -git clone $GITHUB_BASE_GIT --single-branch --depth 1 --branch $GITHUB_BASE_BRANCH $BUGZILLA_ROOT +git clone $GITHUB_BASE_GIT --branch $GITHUB_BASE_BRANCH $BUGZILLA_ROOT cd $BUGZILLA_ROOT if [ "$GITHUB_BASE_REV" != "" ]; then echo "Switching to revision $GITHUB_BASE_REV ..." |