From 61138b58bfacfd3fe81a9c0175612fb6ac3eb4ff Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Wed, 27 Aug 2014 12:49:22 +0200 Subject: [PATCH] OS X: Quote the installer filename Viel hilft viel --- admin/osx/create_mac_pkg.sh.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/osx/create_mac_pkg.sh.cmake b/admin/osx/create_mac_pkg.sh.cmake index 5ec0e810f..b99c9830d 100755 --- a/admin/osx/create_mac_pkg.sh.cmake +++ b/admin/osx/create_mac_pkg.sh.cmake @@ -20,11 +20,11 @@ build_path=$2 prjfile=$build_path/admin/osx/macosx.pkgproj # The name of the installer package -installer=ownCloud-@MIRALL_VERSION_STRING@ -installer_file=$installer.pkg +installer="ownCloud-@MIRALL_VERSION_STRING@" +installer_file="$installer.pkg" # set the installer name to the copied prj config file -/usr/local/bin/packagesutil --file $prjfile set project name $installer +/usr/local/bin/packagesutil --file $prjfile set project name "$installer" # The command line tool of the "Packages" tool, see link above. pkgbuild=/usr/local/bin/packagesbuild