source: scripts/get_waf.sh @ 5b679ba

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since 5b679ba was 5b679ba, checked in by Paul Brossier <piem@piem.org>, 6 years ago

scripts/get_waf.sh: waf 2.0.1

  • Property mode set to 100755
File size: 177 bytes
Line 
1#! /bin/sh
2
3set -e
4set -x
5
6WAFURL=https://waf.io/waf-2.0.1
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.