Roo-Code/packages/evals/.docker/entrypoints/runner.sh
2025-06-17 11:23:43 -07:00

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