Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
233893f1
Unverified
Commit
233893f1
authored
Apr 18, 2020
by
neil
Committed by
GitHub
Apr 18, 2020
Browse files
Merge pull request #2863 from mod242/master
Filter out blank lines
parents
b4c3c20e
2c971a25
Changes
1
Hide whitespace changes
Inline
Side-by-side
dnsapi/dns_ddnss.sh
View file @
233893f1
...
@@ -119,7 +119,7 @@ _ddnss_rest() {
...
@@ -119,7 +119,7 @@ _ddnss_rest() {
# DDNSS uses GET to update domain info
# DDNSS uses GET to update domain info
if
[
"
$method
"
=
"GET"
]
;
then
if
[
"
$method
"
=
"GET"
]
;
then
response
=
"
$(
_get
"
$url
"
|
sed
's/<[a-zA-Z\/][^>]*>//g'
| _tail_n 1
)
"
response
=
"
$(
_get
"
$url
"
|
sed
's/<[a-zA-Z\/][^>]*>//g'
|
tr
-s
"
\n
"
|
_tail_n 1
)
"
else
else
_err
"Unsupported method"
_err
"Unsupported method"
return
1
return
1
...
...
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