pandeiro / heroku-buildpack-boot

MIT License
8 stars 4 forks source link

Consider pulling latest boot executable instead of fixed version #4

Closed micha closed 9 years ago

micha commented 9 years ago

You can use the technique we use in the Javelin .travis.yml file to fetch the latest release of boot.sh, like this:

curl -s https://api.github.com/repos/boot-clj/boot/releases \
  |grep 'download_url.*boot\.sh' \
  |head -1 |sed 's/^.*[:] /wget -O boot /' \
  |bash
chmod a+x boot