summaryrefslogtreecommitdiff
path: root/tools/release/2release.bat
diff options
context:
space:
mode:
Diffstat (limited to 'tools/release/2release.bat')
-rw-r--r--tools/release/2release.bat16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/release/2release.bat b/tools/release/2release.bat
new file mode 100644
index 0000000000..391ac2ea11
--- /dev/null
+++ b/tools/release/2release.bat
@@ -0,0 +1,16 @@
+@echo off
+rem Copyright Beman Dawes 2011
+rem Distributed under the Boost Software License, Version 1.0. See http://www.boost.org/LICENSE_1_0.txt
+if not %1$==$ goto usage_ok
+echo Usage: 2release path-relative-to-boost-root [svn-options]
+echo Path may be to file or directory
+echo Options include --dry-run
+echo WARNING: The current directory must be the directory in %BOOST_RELEASE%
+echo specified by the path-relative argument
+goto done
+
+:usage_ok
+svn merge %2 %3 %4 %5 %6 https://svn.boost.org/svn/boost/branches/release/%1 ^
+ https://svn.boost.org/svn/boost/trunk/%1
+
+:done