diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-14 08:14:16 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-14 08:14:16 (GMT) |
commit | 88b78d8cd4a9231b62e4c91f48143c7a67384379 (patch) | |
tree | 6bdb4a3b4b9259617728976f3de718dae6271c77 /Misc | |
parent | c16dd48ee1d094ec30d6096e1085ca557d313b46 (diff) | |
download | cpython-88b78d8cd4a9231b62e4c91f48143c7a67384379.zip cpython-88b78d8cd4a9231b62e4c91f48143c7a67384379.tar.gz cpython-88b78d8cd4a9231b62e4c91f48143c7a67384379.tar.bz2 |
Support 2.4 (released versions) better. (rsync was not working with adding the *. Only some files/dirs were copied, not everything.)
Diffstat (limited to 'Misc')
-rwxr-xr-x | Misc/build.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Misc/build.sh b/Misc/build.sh index 67aa776..4c17251 100755 --- a/Misc/build.sh +++ b/Misc/build.sh @@ -56,6 +56,8 @@ INSTALL_DIR="/tmp/python-test/local" RSYNC_OPTS="-aC -e ssh" REFLOG="build/reflog.txt.out" +# Change this flag to "yes" for old releases to just update/build the docs. +BUILD_DISABLED="no" ## utility functions current_time() { @@ -107,7 +109,7 @@ start=`current_time` svn update >& build/$F err=$? update_status "Updating" "$F" $start -if [ $err = 0 ]; then +if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then ## FIXME: we should check if this file has changed. ## If it has changed, we should re-run the script to pick up changes. if [ "$ORIG_CHECKSUM" != "$ORIG_CHECKSUM" ]; then @@ -188,7 +190,7 @@ echo "</body>" >> $RESULT_FILE echo "</html>" >> $RESULT_FILE ## copy results -rsync $RSYNC_OPTS html/ $REMOTE_SYSTEM:$REMOTE_DIR +rsync $RSYNC_OPTS html/* $REMOTE_SYSTEM:$REMOTE_DIR cd ../build rsync $RSYNC_OPTS index.html *.out $REMOTE_SYSTEM:$REMOTE_DIR/results/ |