1 parent f51f176 commit 1a2eb06Copy full SHA for 1a2eb06
2 files changed
bin/kamal
bin/vite
@@ -0,0 +1,21 @@
1
+#!/usr/bin/env bash
2
+set -e
3
+[ -n "$RBENV_DEBUG" ] && set -x
4
+
5
+program="${0##*/}"
6
+if [ "$program" = "ruby" ]; then
7
+ for arg; do
8
+ case "$arg" in
9
+ -e* | -- ) break ;;
10
+ */* )
11
+ if [ -f "$arg" ]; then
12
+ export RBENV_DIR="${arg%/*}"
13
+ break
14
+ fi
15
+ ;;
16
+ esac
17
+ done
18
+fi
19
20
+export RBENV_ROOT="/Users/duy/.rbenv"
21
+exec "/opt/homebrew/bin/rbenv" exec "$program" "$@"
0 commit comments