update bash if/else statements (#342)
authorAllen Hancock <watchman@watchmanmonitoring.com>
Mon, 27 Mar 2017 02:21:22 +0000 (21:21 -0500)
committerMatt Palmer <mpalmer@hezmatt.org>
Mon, 27 Mar 2017 02:21:22 +0000 (13:21 +1100)
discourse-setup

index d6e25b67f806be77f91184ff07259e9abecc1ef1..b5f89f218785c0ce4b8ce57253b06d6e49a64a72 100755 (executable)
@@ -476,9 +476,8 @@ ask_user_for_config() {
       local src='^  #\?- "templates\/web.ssl.template.yml"'
       local dst='  #\- "templates\/web.ssl.template.yml"'
       sed -i -e "s/$src/$dst/w $changelog" $config_file
-      if [ -s $changelog ]
+      if [ -s $changelog ]
       then
-      else
         update_ok="n"
         echo "web.ssl.template.yml NOT DISABLED--Are you using a non-standard template?"
       fi
@@ -486,9 +485,8 @@ ask_user_for_config() {
       local dst='  #- "templates\/web.letsencrypt.ssl.template.yml"'
 
       sed -i -e "s/$src/$dst/w $changelog" $config_file
-      if [ -s $changelog ]
+      if [ -s $changelog ]
       then
-      else
         update_ok="n"
         echo "web.ssl.template.yml NOT DISABLED--Are you using a non-standard template?"
       fi