revision_number.bat 513 B

12345678910111213
  1. rem Create revision information, to be used by other script
  2. rem Copyright 2011 Beman Dawes
  3. rem Distributed under the Boost Software License, Version 1.0.
  4. rem See http://www.boost.org/LICENSE_1_0.txt
  5. echo Getting current subversion revision number...
  6. svn co --non-interactive --depth=files http://svn.boost.org/svn/boost/branches/release svn_info
  7. svn info svn_info
  8. svn info svn_info | grep Revision | sed "s/Revision: /set BOOST_REVISION_NUMBER=/" >generated_set_release.bat
  9. call generated_set_release.bat
粤ICP备19079148号