fix: Correct start script reference in create_alias.sh (#1487)

This commit is contained in:
JimmyLiao 2025-06-29 07:28:44 +08:00 committed by GitHub
parent f31b1274bf
commit 399841b6e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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