Remove leading :

This commit is contained in:
Kohei Suzuki 2015-12-12 15:28:34 +09:00
parent f0e8bdcdaf
commit 3c7a13d81f

View file

@ -23,7 +23,8 @@ remove_from_path() {
path_before="$result"
result="${result//:$path_to_remove:/:}"
done
echo "${result%:}"
result="${result%:}"
echo "${result#:}"
}
RBENV_COMMAND="$1"