diff options
author | kubi <jean.gaoliang@huawei.com> | 2016-02-01 14:26:57 +0800 |
---|---|---|
committer | kubi <jean.gaoliang@huawei.com> | 2016-02-01 14:26:57 +0800 |
commit | 115bd363930d3c3c254369b1f5307abaf95cec28 (patch) | |
tree | e898b848b2696c9f44007a16d34ecd5859b853b6 /ci/docker | |
parent | 556a2f2226391043eee47acb5163adfc8342e157 (diff) |
bug fix : git clone yardstick repo failed
line45: git clone YARDSTICK_REPO $YARDSTICK_REPO_DIR fail
Change-Id: I7f2973b320a30a02264b3f65fb3e1397218a5d9a
Signed-off-by: kubi <jean.gaoliang@huawei.com>
Diffstat (limited to 'ci/docker')
-rwxr-xr-x | ci/docker/yardstick-ci/run_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |