mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
10 lines
175 B
Bash
10 lines
175 B
Bash
#!/bin/bash
|
|
|
|
# Set environment variable to suppress WSL install prompt for VS Code
|
|
export DONT_PROMPT_WSL_INSTALL=1
|
|
|
|
if [ $# -eq 0 ]; then
|
|
exec bash
|
|
else
|
|
exec "$@"
|
|
fi
|