mirror of
https://github.com/acmesh-official/acme.sh
synced 2025-08-31 06:15:14 +00:00
fix format
This commit is contained in:
6
acme.sh
6
acme.sh
@@ -458,8 +458,7 @@ _h2b() {
|
||||
_debug2 "xargs"
|
||||
echo "$hex" | sed 's/\([0-9A-F]\{2\}\)/\\\\\\x\1/gI' | xargs printf
|
||||
else
|
||||
for h in $(echo "$hex" | sed 's/\([0-9A-F]\{2\}\)/ \1/gI')
|
||||
do
|
||||
for h in $(echo "$hex" | sed 's/\([0-9A-F]\{2\}\)/ \1/gI'); do
|
||||
if [ -z "$h" ]; then
|
||||
break
|
||||
fi
|
||||
@@ -467,8 +466,7 @@ _h2b() {
|
||||
done
|
||||
fi
|
||||
else
|
||||
for c in $(echo "$hex" | sed 's/\([0-9A-F]\)/ \1/gI')
|
||||
do
|
||||
for c in $(echo "$hex" | sed 's/\([0-9A-F]\)/ \1/gI'); do
|
||||
if [ -z "$ic" ]; then
|
||||
ic=$c
|
||||
continue
|
||||
|
Reference in New Issue
Block a user