From: Tim Rozet Date: Wed, 15 Jul 2015 01:49:13 +0000 (-0400) Subject: Fixes syntax error with git clone for genesis X-Git-Tag: arno.2015.2.0~52^2^2~30 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=genesis.git;a=commitdiff_plain;h=ebbc5db9c4758d714d71fd240c447052ee01abd2 Fixes syntax error with git clone for genesis JIRA: BGS-60 Change-Id: I23a004d41ff8fd37a0ddcae1b4831a333000cae8 Signed-off-by: Tim Rozet --- diff --git a/foreman/ci/deploy.sh b/foreman/ci/deploy.sh index 46a09f5..720dc75 100755 --- a/foreman/ci/deploy.sh +++ b/foreman/ci/deploy.sh @@ -384,7 +384,7 @@ clone_bgs() { rm -rf /tmp/genesis/ ##clone artifacts and move into foreman_vm dir - if ! git clone https://gerrit.opnfv.org/gerrit/genesis; then + if ! git clone https://gerrit.opnfv.org/gerrit/genesis.git; then printf '%s\n' 'deploy.sh: Unable to clone genesis repo' >&2 exit 1 fi @@ -850,7 +850,7 @@ start_virtual_nodes() { rm -rf /tmp/genesis/ ##clone genesis and move into node folder - if ! git clone https://gerrit.opnfv.org/gerrit/genesis; then + if ! git clone https://gerrit.opnfv.org/gerrit/genesis.git; then printf '%s\n' 'deploy.sh: Unable to clone vagrant repo' >&2 exit 1 fi