diff options
| author | JimmyLiao <[email protected]> | 2025-06-29 07:28:44 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-28 23:28:44 +0000 |
| commit | 399841b6e061d32a49468cef836ecb78de5ea84f (patch) | |
| tree | d933212c6ee43631d0499c8510721cce42f4029e /scripts | |
| parent | f31b1274bfa745566197eee67cc820a35046c96e (diff) | |
fix: Correct start script reference in create_alias.sh (#1487)
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/create_alias.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create_alias.sh b/scripts/create_alias.sh index 599078b9..ccaf3dd4 100755 --- a/scripts/create_alias.sh +++ b/scripts/create_alias.sh @@ -4,7 +4,7 @@ # Determine the project directory PROJECT_DIR=$(cd "$(dirname "$0")/.." && pwd) -ALIAS_COMMAND="alias gemini='$PROJECT_DIR/scripts/start.sh'" +ALIAS_COMMAND="alias gemini='node $PROJECT_DIR/scripts/start.js'" # Detect shell and set config file path if [[ "$SHELL" == *"/bash" ]]; then |
