source: scripts/get_waf.sh @ bff692e

sampler
Last change on this file since bff692e was 7858305, checked in by Paul Brossier <piem@piem.org>, 8 years ago

scripts/get_waf.sh: added simple script to fetch latest waf

  • Property mode set to 100755
File size: 178 bytes
RevLine 
[7858305]1#! /bin/sh
2
3set -e
4set -x
5
6WAFURL=https://waf.io/waf-1.8.22
7
8( which wget > /dev/null && wget -qO waf $WAFURL ) || ( which curl > /dev/null && curl $WAFURL > waf )
9
10chmod +x waf
Note: See TracBrowser for help on using the repository browser.