Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
0c944a03
Commit
0c944a03
authored
Nov 09, 2016
by
neilpang
Browse files
fix shellcheck warnings
parent
79a267ab
Changes
1
Show whitespace changes
Inline
Side-by-side
acme.sh
View file @
0c944a03
...
...
@@ -1429,11 +1429,11 @@ _startserver() {
if _contains "$nchelp" "nmap.org"; then
_debug "Using ncat: nmap.org"
if [ "$DEBUG" ]; then
if
printf
"HTTP/1.1 200 OK
\r\n\r\n
$content
"
|
$_NC
$Le_HTTPPort
;
then
if printf
"%s\r\n\r\n%s"
"HTTP/1.1 200 OK
" "
$content" | $_NC $Le_HTTPPort; then
return
fi
else
if
printf
"HTTP/1.1 200 OK
\r\n\r\n
$content
"
|
$_NC
$Le_HTTPPort
>
/dev/null 2>&1
;
then
if printf
"%s\r\n\r\n%s"
"HTTP/1.1 200 OK
" "
$content" | $_NC $Le_HTTPPort >/dev/null 2>&1; then
return
fi
fi
...
...
@@ -1442,12 +1442,12 @@ _startserver() {
# while true ; do
if [ "$DEBUG" ]; then
if
!
printf
"HTTP/1.1 200 OK
\r\n\r\n
$content
"
|
$_NC
-p
$Le_HTTPPort
;
then
printf
"HTTP/1.1 200 OK
\r\n\r\n
$content
"
|
$_NC
$Le_HTTPPort
if ! printf
"%s\r\n\r\n%s"
"HTTP/1.1 200 OK
" "
$content" | $_NC -p $Le_HTTPPort; then
printf
"%s\r\n\r\n%s"
"HTTP/1.1 200 OK
" "
$content" | $_NC $Le_HTTPPort
fi
else
if
!
printf
"HTTP/1.1 200 OK
\r\n\r\n
$content
"
|
$_NC
-p
$Le_HTTPPort
>
/dev/null 2>&1
;
then
printf
"HTTP/1.1 200 OK
\r\n\r\n
$content
"
|
$_NC
$Le_HTTPPort
>
/dev/null 2>&1
if ! printf
"%s\r\n\r\n%s"
"HTTP/1.1 200 OK
" "
$content" | $_NC -p $Le_HTTPPort >/dev/null 2>&1; then
printf
"%s\r\n\r\n%s"
"HTTP/1.1 200 OK
" "
$content" | $_NC $Le_HTTPPort >/dev/null 2>&1
fi
fi
if [ "$?" != "0" ]; then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment