source:
scripts/get_waf.sh
@
7e8b276
Last change on this file since 7e8b276 was 7858305, checked in by , 8 years ago | |
---|---|
|
|
File size: 178 bytes |
Rev | Line | |
---|---|---|
[7858305] | 1 | #! /bin/sh |
2 | ||
3 | set -e | |
4 | set -x | |
5 | ||
6 | WAFURL=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 | ||
10 | chmod +x waf |
Note: See TracBrowser
for help on using the repository browser.