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 10:34:39 UTC

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

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 6755658  supposed to fix shell syntax
6755658 is described below

commit 67556587bdeac603ca2e08558dd6831674a3cddc
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sun Jan 19 11:34:26 2020 +0100

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

diff --git a/scripts/ci/_build-site.sh b/scripts/ci/_build-site.sh
index 536a888df..72f6be9 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