Created
October 13, 2016 08:34
-
-
Save laiso/54dab2a9d7772c65b08262807ca256fb to your computer and use it in GitHub Desktop.
この差でgymのエラー出てた #CodePiece
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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