mirror of
https://github.com/boostorg/release-tools.git
synced 2026-01-19 16:52:08 +00:00
14 lines
461 B
Batchfile
14 lines
461 B
Batchfile
rem Copyright Beman Dawes 2009
|
|
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: upload2sourceforge release-folder
|
|
echo Example: upload2sourceforge 1.40.0
|
|
goto done
|
|
|
|
:usage_ok
|
|
dir boost_*
|
|
pause Are these the correct files to upload? [Ctrl-C to interrupt]
|
|
rsync -avP -e ssh boost_* beman_dawes,boost@frs.sourceforge.net:/home/frs/project/b/bo/boost/boost/%1/
|
|
|
|
:done
|