Fix #1: Better to stick to a single common shell

Referred a couple other version managers. The advantage is not having to
maintain the scripts for other shells (bash comes by default everywhere
I've seen).
This commit is contained in:
Akash Manohar J 2015-05-19 10:44:08 +05:30
parent c176f71a4a
commit 237a5ab59e
3 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,4 @@
#!/usr/bin/env sh
#TODO check for ${BASH_SOURCE[0]} or use $0
#!/usr/bin/env bash
current_script_path=${BASH_SOURCE[0]}
asdf_dir=$(cd $(dirname $current_script_path); echo $(pwd))

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh -l
#!/usr/bin/env bash
source $(dirname $(dirname $0))/lib/utils.sh

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
source $(dirname $(dirname $(dirname $0)))/lib/utils.sh