You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2020/01/19 11:09:55 UTC

[isis] branch master updated: supposed to fix shell syntax (2)

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

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 29a8b9a  supposed to fix shell syntax (2)
29a8b9a is described below

commit 29a8b9ad09bd72082502f1cfa903690e7f7c5b7b
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sun Jan 19 12:09:45 2020 +0100

    supposed to fix shell syntax (2)
---
 scripts/ci/_build-site.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/scripts/ci/_build-site.sh b/scripts/ci/_build-site.sh
index 72f6be9..1908d2a 100644
--- a/scripts/ci/_build-site.sh
+++ b/scripts/ci/_build-site.sh
@@ -9,7 +9,7 @@ fi
 
 bash $SCRIPT_DIR/_print-environment.sh "build-site"
 
-if [ "$SKIP_EXAMPLES" == "true" ]; then
+if [ "$SKIP_EXAMPLES" = "true" ]; then
   echo "skipping examples"
   echo ""
 else
@@ -17,7 +17,7 @@ else
 fi
 
 
-if [ "$SKIP_CONFIGS" == "true" ]; then
+if [ "$SKIP_CONFIGS" = "true" ]; then
   echo "skipping config generation"
   echo ""
 else
@@ -25,7 +25,7 @@ else
 fi
 
 
-if [ "$SKIP_STALE_EXAMPLE_CHECK" == "true" ]; then
+if [ "$SKIP_STALE_EXAMPLE_CHECK" = "true" ]; then
   echo "skipping stale example check"
   echo ""
 else
@@ -37,7 +37,7 @@ else
   fi
 fi
 
-if [ "$SKIP_GENERATION" == "true" ]; then
+if [ "$SKIP_GENERATION" = "true" ]; then
   echo "skipping building..."
   echo ""
 else