diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2018-06-13 20:13:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-06-13 20:13:34 +0000 |
commit | a525952002800dfa4093f9c5d2e2ef178f91ae03 (patch) | |
tree | 1db714b4bee28b235e85725a315512dc4af576e2 | |
parent | 3a55ac00622a0a0d18d619805fea66767a75cfb4 (diff) | |
parent | 5ac84cc14781bc7e177f376eb8892567baeb2804 (diff) |
Merge "Update repo archive script to handle empty repos"
-rw-r--r-- | jjb/releng/opnfv-repo-archiver.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/releng/opnfv-repo-archiver.sh b/jjb/releng/opnfv-repo-archiver.sh index 6fa0aef50..b7ff3baa0 100644 --- a/jjb/releng/opnfv-repo-archiver.sh +++ b/jjb/releng/opnfv-repo-archiver.sh @@ -29,7 +29,7 @@ for PROJECT in "${PROJECT_LIST[@]}"; do git clone "https://gerrit.opnfv.org/gerrit/$PROJECT.git" $CLONE_PATH/$PROJECT else pushd "$CLONE_PATH/$PROJECT" &>/dev/null - git pull -f + git pull -f origin master popd &> /dev/null fi |