snapshot_inspection.bat 727 B

12345678910111213141516171819202122232425262728
  1. rem Inspect snapshot
  2. rem Copyright Beman Dawes 2008, 2011
  3. rem Distributed under the Boost Software License, Version 1.0.
  4. rem See http://www.boost.org/LICENSE_1_0.txt
  5. echo inspect...
  6. pushd windows
  7. rem inspect_trunk.bat builds inspect program every day and copies it to %UTIL%
  8. %UTIL%%\inspect >..\inspect.html
  9. popd
  10. echo Create ftp script...
  11. copy user.txt inspect.ftp
  12. echo dir >>inspect.ftp
  13. echo binary >>inspect.ftp
  14. echo put inspect.html >>inspect.ftp
  15. echo dir >>inspect.ftp
  16. echo mdelete inspect-snapshot.html >>inspect.ftp
  17. echo rename inspect.html inspect-snapshot.html >>inspect.ftp
  18. echo dir >>inspect.ftp
  19. echo bye >>inspect.ftp
  20. echo Run ftp script...
  21. ftp -n -i -s:inspect.ftp boost.cowic.de
  22. echo Inspect script complete
粤ICP备19079148号