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

kezhenxu94 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-swck.git


The following commit(s) were added to refs/heads/master by this push:
     new 20e603f  Fix wrong shell assignment (#61)
20e603f is described below

commit 20e603fb01e7fff4e0480e9eef099a869fc5bcf5
Author: dashanji <[email protected]>
AuthorDate: Wed Jan 19 10:05:43 2022 +0800

    Fix wrong shell assignment (#61)
    
    Signed-off-by: dashanji <[email protected]>
---
 hack/prepare-e2e.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hack/prepare-e2e.sh b/hack/prepare-e2e.sh
index 9a7f356..8e6ffb9 100755
--- a/hack/prepare-e2e.sh
+++ b/hack/prepare-e2e.sh
@@ -29,7 +29,7 @@ function install_kubectl()
       curl -LO https://dl.k8s.io/release/v1.19.1/bin/${OS}/${ARCH}/kubectl && 
chmod +x ./kubectl && mv ./kubectl ${INSTALL_DIR}
       if [ $? -ne 0 ]; then
         echo "install kubectl error, please check"
-        $prepare_ok=false
+        prepare_ok=false
       fi
     fi
 }
@@ -42,7 +42,7 @@ function install_swctl()
       && cd .. && rm -r skywalking-cli-0.9.0
       if [ $? -ne 0 ]; then
         echo "install swctl error, please check"
-        $prepare_ok=false
+        prepare_ok=false
       fi
     fi
 }
@@ -55,7 +55,7 @@ function install_yq()
       tar xz && mv yq_${OS}_${ARCH} ${INSTALL_DIR}/yq
       if [ $? -ne 0 ]; then
         echo "install yq error, please check"
-        $prepare_ok=false
+        prepare_ok=false
       fi
     fi
 }

Reply via email to