2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-11 11:42:14 +00:00
Files
build/scripts/nightly.sh
Vladimir Prus 04cc22508b Fix CVS address
[SVN r34064]
2006-05-23 14:28:20 +00:00

17 lines
547 B
Bash

#!/bin/bash
# This script create a nightly tarball of Boost.Build V2
# and updates the web site.
# Create the packages
set -e
cd /tmp
rm -rf boost-build
cvs -d :ext:vladimir_prus@boost.cvs.sourceforge.net:/cvsroot/boost co -P -d boost-build boost/tools > /tmp/boost_build_checkout_log
mv /tmp/boost_build_checkout_log boost-build/checkout-log
cd boost-build/build/v2
./roll.sh > ../roll-log
cd ..
scp boost-build.zip boost-build.tar.bz2 vladimir_prus@shell.sf.net:/home/groups/b/bo/boost/htdocs/boost-build2 > scp-log
echo "Upload successfull"