source:
scripts/get_waf.sh
@
3d2e481
Last change on this file since 3d2e481 was 7858305, checked in by , 8 years ago | |
---|---|
|
|
File size: 178 bytes |
Line | |
---|---|
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.