2release.bat 588 B

12345678910111213141516
  1. @echo off
  2. rem Copyright Beman Dawes 2011
  3. rem Distributed under the Boost Software License, Version 1.0. See http://www.boost.org/LICENSE_1_0.txt
  4. if not %1$==$ goto usage_ok
  5. echo Usage: 2release path-relative-to-boost-root [svn-options]
  6. echo Path may be to file or directory
  7. echo Options include --dry-run
  8. echo WARNING: The current directory must be the directory in %BOOST_RELEASE%
  9. echo specified by the path-relative argument
  10. goto done
  11. :usage_ok
  12. svn merge %2 %3 %4 %5 %6 https://svn.boost.org/svn/boost/branches/release/%1 ^
  13. https://svn.boost.org/svn/boost/trunk/%1
  14. :done
粤ICP备19079148号