inspect_trunk.bat 938 B

12345678910111213141516171819202122232425262728293031323334353637
  1. rem Inspect Trunk
  2. rem Copyright Beman Dawes 2008, 2009
  3. rem Distributed under the Boost Software License, Version 1.0.
  4. rem See http://www.boost.org/LICENSE_1_0.txt
  5. echo Must be run in directory containing svn checkout of trunk
  6. echo Update trunk working copy...
  7. svn up --non-interactive
  8. pushd tools\inspect\build
  9. echo Build inspect program...
  10. bjam
  11. popd
  12. echo Inspect...
  13. dist\bin\inspect >%TEMP%\trunk_inspect.html
  14. echo Create ftp script...
  15. pushd %TEMP%
  16. copy %BOOST_TRUNK%\..\user.txt inspect.ftp
  17. echo dir >>inspect.ftp
  18. echo binary >>inspect.ftp
  19. echo put trunk_inspect.html >>inspect.ftp
  20. echo dir >>inspect.ftp
  21. echo mdelete inspect-trunk.html >>inspect.ftp
  22. echo rename trunk_inspect.html inspect-trunk.html >>inspect.ftp
  23. echo dir >>inspect.ftp
  24. echo bye >>inspect.ftp
  25. echo Run ftp script...
  26. ftp -n -i -s:inspect.ftp boost.cowic.de
  27. popd
  28. echo Update script for next run
  29. copy tools\release\inspect_trunk.bat .
  30. echo Inspect script complete
粤ICP备19079148号