Created
August 18, 2023 12:03
-
-
Save richiethomas/489d8678a582e8a7193ad9122c9eaa4d to your computer and use it in GitHub Desktop.
This file contains 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 # <= we are here | |
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