Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: clearideas/heroku-buildpack-ghostscript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: lemurheavy/heroku-buildpack-ghostscript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jun 11, 2013

  1. Copy the full SHA
    e692b54 View commit details
  2. removed tar verbose flag

    nickmerwin committed Jun 11, 2013
    Copy the full SHA
    94c714e View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 bin/compile
4 changes: 2 additions & 2 deletions bin/compile
Original file line number Diff line number Diff line change
@@ -7,10 +7,10 @@ echo "-----> Installing GhostScript 9.07"
cd $1

# download the mruby binary (-O) silently (-s)
curl https://s3.amazonaws.com/clearideas-public/gs.tgz -s -O
curl https://s3.amazonaws.com/static.tandemstock.com/gs.tgz -s -O

# make a directory to untar (like unzip) the binary
mkdir -p vendor/gs

# untar the binary to the directory we want
tar -C vendor/gs -xvf gs.tgz
tar -C vendor/gs -xf gs.tgz