mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
Mac Installer: Add file name quoting.
This commit is contained in:
parent
00ae3c3120
commit
8f8265b219
1 changed files with 3 additions and 3 deletions
|
@ -62,9 +62,9 @@ fi
|
|||
|
||||
# Sparkle wants a tbz, it cannot install raw pkg
|
||||
cd $install_path
|
||||
tar cf $installer_file_tar $installer_file
|
||||
bzip2 -9 $installer_file_tar
|
||||
mv $installer_file_tar_bz2 $installer_file_tbz
|
||||
tar cf "$installer_file_tar" "$installer_file"
|
||||
bzip2 -9 "$installer_file_tar"
|
||||
mv "$installer_file_tar_bz2" "$installer_file_tbz"
|
||||
rc=$?
|
||||
if [ $rc == 0 ]; then
|
||||
echo "Successfully created $installer_file"
|
||||
|
|
Loading…
Reference in a new issue