Browse Source

Fix lint

pull/685/head
Timothe Litt 4 years ago
parent
commit
e21fd2e087
Failed to extract signature
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      getssl

+ 1
- 1
getssl View File

@ -851,7 +851,7 @@ copy_file_to_location() { # copies a file, using scp, sftp or ftp if required.
IFS=\; read -r -a copy_locations <<<"$3"
for to in "${copy_locations[@]}"; do
if [[ -n "$suffix" ]]; then
bname="`basename $to`"
bname="$(basename "$to")"
if [[ "${bname##*.}" == "$bname" ]]; then
to="${to}.${suffix}"
else


Loading…
Cancel
Save