浏览代码

Remove leading `:`

pull/504/head^2
Kohei Suzuki 10 年前
父节点
当前提交
3c7a13d81f
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      libexec/rbenv-which

+ 2
- 1
libexec/rbenv-which 查看文件

@ -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"

正在加载...
取消
保存