ソースを参照

Merge pull request #959 from zenspider/fix-dash-u

Fixed `rbenv init -` output to work w/ no args and bash's `set -u`.
pull/1133/head
Mislav Marohnić 8年前
committed by GitHub
コミット
eab68688dc
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      libexec/rbenv-init

+ 1
- 1
libexec/rbenv-init ファイルの表示

@ -138,7 +138,7 @@ esac
if [ "$shell" != "fish" ]; then
IFS="|"
cat <<EOS
command="\$1"
command="\${1:-}"
if [ "\$#" -gt 0 ]; then
shift
fi

読み込み中…
キャンセル
保存