From 115bd363930d3c3c254369b1f5307abaf95cec28 Mon Sep 17 00:00:00 2001 From: kubi Date: Mon, 1 Feb 2016 14:26:57 +0800 Subject: [PATCH] bug fix : git clone yardstick repo failed line45: git clone YARDSTICK_REPO $YARDSTICK_REPO_DIR fail Change-Id: I7f2973b320a30a02264b3f65fb3e1397218a5d9a Signed-off-by: kubi --- ci/docker/yardstick-ci/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.16.6