You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by sm...@apache.org on 2019/01/18 17:04:01 UTC

[geode-benchmarks] branch develop updated: Adjust getopt parameters and fix git checkout method. (#47)

This is an automated email from the ASF dual-hosted git repository.

smgoller pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/develop by this push:
     new d75e1f3  Adjust getopt parameters and fix git checkout method. (#47)
d75e1f3 is described below

commit d75e1f30bb9caa201a3b95cbb89ac27a75c1ed2f
Author: Sean Goller <se...@goller.net>
AuthorDate: Fri Jan 18 09:03:57 2019 -0800

    Adjust getopt parameters and fix git checkout method. (#47)
    
    Authored-by: Sean Goller <sg...@pivotal.io>
---
 infrastructure/scripts/aws/run_against_baseline.sh | 2 +-
 infrastructure/scripts/aws/run_tests.sh            | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/infrastructure/scripts/aws/run_against_baseline.sh b/infrastructure/scripts/aws/run_against_baseline.sh
index 53a6ef2..2fa58e6 100755
--- a/infrastructure/scripts/aws/run_against_baseline.sh
+++ b/infrastructure/scripts/aws/run_against_baseline.sh
@@ -22,7 +22,7 @@ set -e -o pipefail
 BENCHMARK_BRANCH='develop'
 BRANCH='develop'
 
-TEMP=`getopt t:b::v::B::V::m::o::h "$@"`
+TEMP=`getopt t:b:v:B:V:m:o:h "$@"`
 eval set -- "$TEMP"
 
 while true ; do
diff --git a/infrastructure/scripts/aws/run_tests.sh b/infrastructure/scripts/aws/run_tests.sh
index 6565371..983a306 100755
--- a/infrastructure/scripts/aws/run_tests.sh
+++ b/infrastructure/scripts/aws/run_tests.sh
@@ -83,7 +83,8 @@ if [ ! -z "${BRANCH}" ]; then
 
   ssh ${SSH_OPTIONS} geode@$FIRST_INSTANCE "\
     rm -rf geode && \
-    git clone https://github.com/apache/geode --branch ${BRANCH}"
+    git clone https://github.com/apache/geode && \
+    cd geode && git checkout ${BRANCH}"
 
   set +e
   for i in {1..5}; do