瀏覽代碼

Avoid a long line

Bob Mottram 10 年之前
父節點
當前提交
eb43f9e9ee
共有 1 個檔案被更改,包括 5 行新增3 行删除
  1. 5
    3
      install-freedombone.sh

+ 5
- 3
install-freedombone.sh 查看文件

@@ -87,15 +87,17 @@ function argument_checks {
87 87
   echo './install-freedombone.sh [domain] [username] [subdomain code]'
88 88
   echo ''
89 89
   if [ ! $DOMAIN_NAME ]; then
90
-	  echo "Please specify your domain name"
90
+	  echo 'Please specify your domain name'
91 91
 	  exit
92 92
   fi
93 93
   if [ ! $MY_USERNAME ]; then
94
-	  echo "Please specify your username"
94
+	  echo 'Please specify your username'
95 95
 	  exit
96 96
   fi
97 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 101
 	  exit
100 102
   fi
101 103
 }