From f70ce95326958e6678a97bb42fd609f55a4df917 Mon Sep 17 00:00:00 2001 From: Jing Lu Date: Mon, 27 Mar 2017 04:02:56 +0000 Subject: Update git submodules * Update docs/submodules/yardstick from branch 'master' - Merge "pathspec 'master' did not match any file(s) known to git" - pathspec 'master' did not match any file(s) known to git JIRA: YARDSTICK-605 On stable branch, exec_tests.sh will also try to git checkout master branch, which cause error "pathspec 'master' did not match any file(s) known to git." This is a remianing bug from the previous release. see at: https://build.opnfv.org/ci/view/yardstick/job/yardstick-apex-lf-pod1-daily-danube/62/console This error occur in line 48. But the reason is 'set -e' If we set 'set -e': 'git checkout master && git pull' return 1 but it will go on executing; but 'git checkout master' will return 1 and terminate immediately. If we do not set, it will return 1 but will terminate immediately. Actually we not need 'git checkout master' here because it is already in stable/danube branch. So I remove it. Change-Id: I106a1da28cf2deee90ebcb25adaf638a210928ee Signed-off-by: chenjiankun --- docs/submodules/yardstick | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/submodules/yardstick') diff --git a/docs/submodules/yardstick b/docs/submodules/yardstick index 975860bd0..4c1b439cc 160000 --- a/docs/submodules/yardstick +++ b/docs/submodules/yardstick @@ -1 +1 @@ -Subproject commit 975860bd04dde49355c856449bcbf5cb290d7279 +Subproject commit 4c1b439ccd286dc8c8a84cd8eed57d1b230c6177 -- cgit 1.2.3-korg