runner.sh 175 B

12345678910
  1. #!/bin/bash
  2. # Set environment variable to suppress WSL install prompt for VS Code
  3. export DONT_PROMPT_WSL_INSTALL=1
  4. if [ $# -eq 0 ]; then
  5. exec bash
  6. else
  7. exec "$@"
  8. fi