diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-08-27 16:53:40 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-08-27 18:10:15 -0700 |
commit | 5e1de9cced18e41197cbe981b2fa043174a21c38 (patch) | |
tree | ab2468755b8a9882521686c19e0d9511ec3de0a5 | |
parent | 42d02aa3474cfb094913f0f169e3a6da4f803470 (diff) | |
download | pandoc-5e1de9cced18e41197cbe981b2fa043174a21c38.tar.gz |
Makefile: Fix macospkg target to fetch target from S3 artifacts.
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -78,8 +78,10 @@ debpkg: man/pandoc.1 utdemir/ghc-musl:v12-libgmp-ghc8101 bash \ /mnt/linux/make_artifacts.sh -macospkg: man/pandoc.1 - ./macos/make_macos_package.sh +macospkg: + rm -rf macos-release-candidate + aws s3 sync s3://travis-jgm-pandoc macos-release-candidate + make -C macos-release-candidate winpkg: pandoc-$(version)-windows-i386.msi pandoc-$(version)-windows-i386.zip pandoc-$(version)-windows-x86_64.msi pandoc-$(version)-windows-x86_64.zip |