mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
Merge pull request #53 from ctreatma/feature/only_pwd
Fix #52: Send any `cd` output to /dev/null
This commit is contained in:
commit
1589a03678
2
asdf.sh
2
asdf.sh
@ -6,7 +6,7 @@ else
|
|||||||
current_script_path=$0
|
current_script_path=$0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
asdf_dir=$(cd $(dirname $current_script_path); echo $(pwd))
|
asdf_dir=$(cd $(dirname $current_script_path) &> /dev/null; echo $(pwd))
|
||||||
export PATH="${asdf_dir}/bin:${asdf_dir}/shims:$PATH"
|
export PATH="${asdf_dir}/bin:${asdf_dir}/shims:$PATH"
|
||||||
|
|
||||||
if [ -n "$ZSH_VERSION" ]; then
|
if [ -n "$ZSH_VERSION" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user