Skip to content

Instantly share code, notes, and snippets.

@richiethomas
Created August 18, 2023 12:03
Show Gist options
  • Save richiethomas/489d8678a582e8a7193ad9122c9eaa4d to your computer and use it in GitHub Desktop.
Save richiethomas/489d8678a582e8a7193ad9122c9eaa4d to your computer and use it in GitHub Desktop.
#!/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