asdf/asdf.sh
Akash Manohar J 237a5ab59e 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).
2015-05-19 10:44:10 +05:30

6 lines
173 B
Bash

#!/usr/bin/env bash
current_script_path=${BASH_SOURCE[0]}
asdf_dir=$(cd $(dirname $current_script_path); echo $(pwd))
export PATH="${asdf_dir}/bin:${asdf_dir}/shims:$PATH"