inspect_trunk.bat 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 Clean trunk working copy ...
  7. rem cleanup clears locks or other residual problems (we learned this the hard way!)
  8. svn cleanup
  9. echo Update trunk working copy...
  10. svn up --non-interactive --trust-server-cert
  11. pushd tools\inspect\build
  12. echo Build inspect program...
  13. bjam
  14. popd
  15. echo Copy inspect.exe to %UTIL% directory...
  16. copy /y dist\bin\inspect.exe %UTIL%
  17. echo Inspect...
  18. inspect >%TEMP%\trunk_inspect.html
  19. echo Create ftp script...
  20. pushd %TEMP%
  21. copy %BOOST_TRUNK%\..\user.txt inspect.ftp
  22. echo dir >>inspect.ftp
  23. echo binary >>inspect.ftp
  24. echo put trunk_inspect.html >>inspect.ftp
  25. echo dir >>inspect.ftp
  26. echo mdelete inspect-trunk.html >>inspect.ftp
  27. echo rename trunk_inspect.html inspect-trunk.html >>inspect.ftp
  28. echo dir >>inspect.ftp
  29. echo bye >>inspect.ftp
  30. echo Run ftp script...
  31. ftp -n -i -s:inspect.ftp boost.cowic.de
  32. popd
  33. echo Update script for next run
  34. copy /y tools\release\inspect_trunk.bat
  35. echo Inspect script complete
粤ICP备19079148号