build.bat 456 B

123456789101112131415161718192021
  1. rd firebug-lite /s /q
  2. rd pub /s /q
  3. svn export "../" "./firebug-lite"
  4. md pub
  5. xcopy ".\firebug-lite\skin\." ".\pub\skin" /s /i
  6. copy "..\docs\beta\index.html" ".\pub\index.html"
  7. copy "..\content\changelog.txt" ".\pub"
  8. copy ".\firebug-lite\build\*.*" ".\pub"
  9. del ".\pub\*.bat"
  10. tar -cv --file=firebug-lite.tar firebug-lite/*
  11. gzip -9 < firebug-lite.tar > ./pub/firebug-lite.tar.tgz
  12. del firebug-lite.tar
  13. rd firebug-lite /s /q
  14. pause