Install waf installer

This commit is contained in:
Jake Howard 2016-02-05 18:01:27 +00:00
parent e643b7e55b
commit 85472754b5

17
install-waf.sh Executable file
View File

@ -0,0 +1,17 @@
#! /usr/bin/env bash
WAF_DIR=~/.home_bin
set -e
echo "Installing waf..."
mkdir -p $WAF_DIR
wget https://waf.io/waf-1.8.19
mv waf-1.8.19 $WAF_DIR/waf
chmod +x $WAF_DIR/waf
echo "PATH=$WAF_DIR:$PATH" >> ~/.bashrc
. ~/.bashrc
echo "Waf Installed Successfully!"