annotate scripts/get_waf.sh @ 192:5698471a8796

VERSION: bump to 0.5.2~alpha
author Paul Brossier <piem@piem.org>
date Tue, 14 Feb 2017 00:04:33 +0100
parents 853f9644ad9c
children
rev   line source
piem@118 1 #! /bin/sh
piem@118 2
piem@118 3 set -e
piem@118 4 set -x
piem@118 5
piem@128 6 WAFURL=https://waf.io/waf-1.8.22
piem@118 7
piem@118 8 ( which wget > /dev/null && wget -qO waf $WAFURL ) || ( which curl > /dev/null && curl $WAFURL > waf )
piem@118 9
piem@118 10 chmod +x waf