Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/negrel/hugo-theme-pico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Negrel <negrel.dev@protonmail.com>2021-02-01 23:51:06 +0300
committerAlexandre Negrel <negrel.dev@protonmail.com>2021-02-01 23:51:06 +0300
commit11397fac442740d71f2bee4bcab7459cd393968b (patch)
tree704b5f5bfb2c6c08a067061f446a63bf8e0a157a
parent9b388318497f3c6c486decd41f3c355978482ca0 (diff)
parentb8fce34f44794bc563644ebbc250db3082b1dc6d (diff)
update update.sh
-rwxr-xr-xexampleSite/update.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/exampleSite/update.sh b/exampleSite/update.sh
index db65259..2838d31 100755
--- a/exampleSite/update.sh
+++ b/exampleSite/update.sh
@@ -25,7 +25,10 @@ fi
no_postcss_cli=true;
if [ "$no_npm" = false ]; then
npm ls postcss-cli > /dev/null
- no_postcss_cli=$?
+
+ if [ $? = 0 ]; then
+ no_postcss_cli=false
+ fi
fi