diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-21 21:35:03 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-21 21:35:03 +0200 |
commit | f6a282023ec220c7cf181276e88a36be2821b132 (patch) | |
tree | 5d6fd4adcdfaf787e18aa52025cf8e1f9350b754 /tools/update-packaging/make_full_update.sh | |
parent | 91de3341df7e08094e17a34053b8e21c89ab02a7 (diff) | |
parent | 44455d8b483d88b01fa7dac87325b6b2d04f5956 (diff) | |
download | UXP-f6a282023ec220c7cf181276e88a36be2821b132.tar UXP-f6a282023ec220c7cf181276e88a36be2821b132.tar.gz UXP-f6a282023ec220c7cf181276e88a36be2821b132.tar.lz UXP-f6a282023ec220c7cf181276e88a36be2821b132.tar.xz UXP-f6a282023ec220c7cf181276e88a36be2821b132.zip |
Merge branch 'master' of https://github.com/MoonchildProductions/UXP
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" |