-
-
Save impostorsguides/bec6a1c0f520f703c6db259a472596c4 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
set -e | |
[ -n "$RBENV_DEBUG" ] && set -x | |
program="${0##*/}" | |
if [ "$program" = "ruby" ]; then | |
for arg; do | |
case "$arg" in | |
-e* | -- ) break ;; | |
*/* ) | |
if [ -f "$arg" ]; then | |
export RBENV_DIR="${arg%/*}" | |
break | |
fi | |
;; | |
esac | |
done | |
fi | |
export RBENV_ROOT="/Users/richiethomas/.rbenv" | |
exec "/Users/richiethomas/.rbenv/libexec/rbenv" exec "$program" "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment