Skip to content

Instantly share code, notes, and snippets.

@laiso
Created October 13, 2016 08:34
Show Gist options
  • Save laiso/54dab2a9d7772c65b08262807ca256fb to your computer and use it in GitHub Desktop.
Save laiso/54dab2a9d7772c65b08262807ca256fb to your computer and use it in GitHub Desktop.
この差でgymのエラー出てた #CodePiece
$ type rbenv
rbenv is a function
rbenv ()
{
local command;
command="$1";
if [ "$#" -gt 0 ]; then
shift;
fi;
case "$command" in
rehash | shell)
eval "$(rbenv "sh-$command" "$@")"
;;
*)
command rbenv "$command" "$@"
;;
esac
}
$ sh -c "type rbenv"
rbenv is /usr/local/bin/rbenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment