Bladeren bron

Avoid a long line

Bob Mottram 10 jaren geleden
bovenliggende
commit
eb43f9e9ee
1 gewijzigde bestanden met toevoegingen van 5 en 3 verwijderingen
  1. 5
    3
      install-freedombone.sh

+ 5
- 3
install-freedombone.sh Bestand weergeven

87
   echo './install-freedombone.sh [domain] [username] [subdomain code]'
87
   echo './install-freedombone.sh [domain] [username] [subdomain code]'
88
   echo ''
88
   echo ''
89
   if [ ! $DOMAIN_NAME ]; then
89
   if [ ! $DOMAIN_NAME ]; then
90
-	  echo "Please specify your domain name"
90
+	  echo 'Please specify your domain name'
91
 	  exit
91
 	  exit
92
   fi
92
   fi
93
   if [ ! $MY_USERNAME ]; then
93
   if [ ! $MY_USERNAME ]; then
94
-	  echo "Please specify your username"
94
+	  echo 'Please specify your username'
95
 	  exit
95
 	  exit
96
   fi
96
   fi
97
   if [ ! $FREEDNS_SUBDOMAIN_CODE ]; then
97
   if [ ! $FREEDNS_SUBDOMAIN_CODE ]; then
98
-	  echo "Please specify the freedns subdomain code.  To find it from https://freedns.afraid.org select 'Dynamic DNS', then 'quick cron example' and copy the code located between '?' and '=='."
98
+      echo 'Please specify the freedns subdomain code.  To find it from '
99
+      echo "https://freedns.afraid.org select 'Dynamic DNS', then 'quick "
100
+      echo "cron example' and copy the code located between '?' and '=='."
99
 	  exit
101
 	  exit
100
   fi
102
   fi
101
 }
103
 }