deploy.bat 421 B

1234567891011121314151617
  1. @echo off
  2. set TARGET=..\www\study_sm
  3. echo Deleting %TARGET%\static...
  4. if exist "%TARGET%\static" rmdir /s /q "%TARGET%\static"
  5. echo Deleting %TARGET%\index.html...
  6. if exist "%TARGET%\index.html" del /q "%TARGET%\index.html"
  7. echo Copying dist\index.html to %TARGET%...
  8. copy /y dist\index.html "%TARGET%\index.html"
  9. echo Copying dist\static to %TARGET%...
  10. xcopy /e /i /y dist\static "%TARGET%\static"
  11. echo Done.
  12. pause