remove_env_prod.bat 250 B

1234567891011121314151617181920212223
  1. @echo off
  2. set workPath=%~dp0..\..\..
  3. :start
  4. set choice=&set /p "choice="
  5. if /i "%choice%"=="y" goto ye
  6. goto ne
  7. :ye
  8. cd /d %workPath%
  9. del /s /q *-prod.yml
  10. del /s /q *-test.yml
  11. del /s /q *-pre.yml
  12. :: del /s /q *-dev.yml
  13. :ne
  14. goto start
  15. pause