diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-05-07 20:12:46 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-05-07 20:12:46 -0700 |
commit | 8afbd7e66499c4c9a24b225d3af01d353e0876ca (patch) | |
tree | da0f81c4666d2ac7b437dc67e2c04f291ce7e1e2 | |
parent | 249c3e8c5a1864b2c3e4776d499f2ab55fc84607 (diff) | |
download | pandoc-8afbd7e66499c4c9a24b225d3af01d353e0876ca.tar.gz |
OSX package script: cabal init before update.
-rwxr-xr-x | make_osx_package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_osx_package.sh b/make_osx_package.sh index 1a12601dc..3119f140e 100755 --- a/make_osx_package.sh +++ b/make_osx_package.sh @@ -20,11 +20,11 @@ echo Removing old files... rm -rf $DIST mkdir -p $RESOURCES +cabal sandbox init echo Updating database cabal update echo Building pandoc... -cabal sandbox init cabal clean # Use cpphs to avoid problems with clang cpp on ghc 7.8 osx: cabal install cpphs alex happy hsb2hs |