Update setup script and add a new one

This commit is contained in:
Akash Manohar J 2015-07-28 13:45:42 +05:30
parent 364b65c2d9
commit 603df1714a
2 changed files with 12 additions and 2 deletions

View File

@ -6,5 +6,5 @@ else
current_script_path=$0
fi
asdf_dir=$(cd $(dirname $current_script_path); echo $(pwd))
export PATH="${asdf_dir}/bin:${asdf_dir}/shims:$PATH"
qwer_dir=$(cd $(dirname $current_script_path); echo $(pwd))
export PATH="${qwer_dir}/bin:${qwer_dir}/shims:$PATH"

10
qwer.sh Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env bash
if [ "${BASH_SOURCE[0]}" != "" ]; then
current_script_path=${BASH_SOURCE[0]}
else
current_script_path=$0
fi
qwer_dir=$(cd $(dirname $current_script_path); echo $(pwd))
export PATH="${qwer_dir}/bin:${qwer_dir}/shims:$PATH"