diff options
| author | practicalswift <[email protected]> | 2017-10-04 21:25:25 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-10-18 17:10:23 +0200 |
| commit | 80f5f28d38e59b550ab7e7465cfa48defee343a6 (patch) | |
| tree | d4a294ef5285b8b5e49bedae58831438a7600d71 /contrib/macdeploy | |
| parent | Add required space to [[ -n "$1" ]] (previously [[ -n"$1" ]]) (diff) | |
| download | discoin-80f5f28d38e59b550ab7e7465cfa48defee343a6.tar.xz discoin-80f5f28d38e59b550ab7e7465cfa48defee343a6.zip | |
Fix incorrect quoting of quotes (the previous quotes had no effect beyond unquoting)
Diffstat (limited to 'contrib/macdeploy')
| -rwxr-xr-x | contrib/macdeploy/detached-sig-create.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/macdeploy/detached-sig-create.sh b/contrib/macdeploy/detached-sig-create.sh index 7f017bb4f..3379a4599 100755 --- a/contrib/macdeploy/detached-sig-create.sh +++ b/contrib/macdeploy/detached-sig-create.sh @@ -40,7 +40,7 @@ grep CodeResources < "${TEMPLIST}" | while read i; do RESOURCE="${TEMPDIR}/${OUTROOT}/${TARGETFILE}" DIRNAME="`dirname "${RESOURCE}"`" mkdir -p "${DIRNAME}" - echo "Adding resource for: "${TARGETFILE}"" + echo "Adding resource for: \"${TARGETFILE}\"" cp "${i}" "${RESOURCE}" done |