浏览代码

Avoid a long line

Bob Mottram 10 年前
父节点
当前提交
eb43f9e9ee
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. 5
    3
      install-freedombone.sh

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

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
 }