diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-05-16 21:51:25 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-05-16 21:53:21 -0700 |
commit | 06da7be1fdb6dd80238c0131a8d1c903899d5232 (patch) | |
tree | e6f5659a1b41a84c64c73b8b489ff9d23940d565 | |
parent | efe650dc0f8d892784b9e19d12e88cf0c5b1ad41 (diff) | |
download | pandoc-06da7be1fdb6dd80238c0131a8d1c903899d5232.tar.gz |
make_osx_package: Call zip file pandoc-VERSION-osx.zip.
The zip should not be named SOMETHING.pkg.zip, or OSX finder
will extract it into a folder named SOMETHING.pkg, which it
will interpret as a defective package.
Closes #1308.
-rwxr-xr-x | make_osx_package.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make_osx_package.sh b/make_osx_package.sh index 7e9d10c0e..4e93a1a03 100755 --- a/make_osx_package.sh +++ b/make_osx_package.sh @@ -76,8 +76,8 @@ sudo codesign --force --sign "$CODESIGNID" $BASE.pkg spctl --assess --type install $BASE.pkg echo Creating zip... -zip -9 -r $BASE.pkg.zip $BASE.pkg -zip -9 -j -r $BASE.pkg.zip $OSX/uninstall-pandoc.pl +zip -9 -r $BASE-osx.zip $BASE.pkg +zip -9 -j -r $BASE-osx.zip $OSX/uninstall-pandoc.pl # echo Creating disk image... # sudo hdiutil create "$BASE.dmg" \ |