From: kubi Date: Mon, 1 Feb 2016 06:26:57 +0000 (+0800) Subject: bug fix : git clone yardstick repo failed X-Git-Tag: colorado.1.0~239 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F21%2F8821%2F1;p=yardstick.git bug fix : git clone yardstick repo failed line45: git clone YARDSTICK_REPO $YARDSTICK_REPO_DIR fail Change-Id: I7f2973b320a30a02264b3f65fb3e1397218a5d9a Signed-off-by: kubi --- diff --git a/ci/docker/yardstick-ci/run_tests.sh b/ci/docker/yardstick-ci/run_tests.sh index 531feacc2..3b7cea3c5 100755 --- a/ci/docker/yardstick-ci/run_tests.sh +++ b/ci/docker/yardstick-ci/run_tests.sh @@ -42,7 +42,7 @@ git_checkout $RELENG_BRANCH $RELENG_REPO echo echo "INFO: Updating yardstick -> $YARDSTICK_BRANCH" if [ ! -d $YARDSTICK_REPO_DIR ]; then - git clone YARDSTICK_REPO $YARDSTICK_REPO_DIR + git clone $YARDSTICK_REPO $YARDSTICK_REPO_DIR fi cd $YARDSTICK_REPO_DIR git checkout master && git pull