source:
scripts/get_waf.sh
@
0fdab5b
Last change on this file since 0fdab5b was 80e9efc, checked in by , 8 years ago | |
---|---|
|
|
File size: 177 bytes |
Line | |
---|---|
1 | #! /bin/sh |
2 | |
3 | set -e |
4 | set -x |
5 | |
6 | WAFURL=https://waf.io/waf-1.9.6 |
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.