diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2019-07-18 11:21:40 -0400 |
---|---|---|
committer | adeshkp <adeshkp@users.noreply.github.com> | 2019-07-18 11:21:40 -0400 |
commit | 4e464892a2b547a6a0ed30d47d2de39d30a4d32a (patch) | |
tree | a026d38b33b1ca03b27c0a3515081ad9f2305042 /tools/update-packaging/make_full_update.sh | |
parent | c4d192b49246ed72e2b857452b557ef1bef83c58 (diff) | |
download | UXP-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.tar UXP-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.tar.gz UXP-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.tar.lz UXP-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.tar.xz UXP-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.zip |
Issue #701 - Support spaces in Mac app name
Diffstat (limited to 'tools/update-packaging/make_full_update.sh')
-rwxr-xr-x | tools/update-packaging/make_full_update.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/update-packaging/make_full_update.sh b/tools/update-packaging/make_full_update.sh index f0466144d..ba1404474 100755 --- a/tools/update-packaging/make_full_update.sh +++ b/tools/update-packaging/make_full_update.sh @@ -67,13 +67,13 @@ list_files files popd # Add the type of update to the beginning of the update manifests. -> $updatemanifestv2 -> $updatemanifestv3 +> "$updatemanifestv2" +> "$updatemanifestv3" notice "" notice "Adding type instruction to update manifests" notice " type complete" -echo "type \"complete\"" >> $updatemanifestv2 -echo "type \"complete\"" >> $updatemanifestv3 +echo "type \"complete\"" >> "$updatemanifestv2" +echo "type \"complete\"" >> "$updatemanifestv3" notice "" notice "Adding file add instructions to update manifests" |