|
Boost-Commit : |
From: grafikrobot_at_[hidden]
Date: 2007-12-05 15:49:42
Author: grafik
Date: 2007-12-05 15:49:42 EST (Wed, 05 Dec 2007)
New Revision: 41758
URL: http://svn.boost.org/trac/boost/changeset/41758
Log:
Fix find call.
Text files modified:
website/public_html/beta/common/code/update-daily.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: website/public_html/beta/common/code/update-daily.sh
==============================================================================
--- website/public_html/beta/common/code/update-daily.sh (original)
+++ website/public_html/beta/common/code/update-daily.sh 2007-12-05 15:49:42 EST (Wed, 05 Dec 2007)
@@ -7,13 +7,13 @@
cd ${HOME}/www.boost.org/archives
-for result in `find incoming '*.zip'` ; do
+for result in `find incoming -name '*.zip'` ; do
f=`basename ${result}`
mv -f live/${f} old
mv -f ${result} live
rm -f old/${f}
done
-for result in `find incoming '*.tar.bz2'` ; do
+for result in `find incoming -name '*.tar.bz2'` ; do
f=`basename ${result}`
mv -f live/${f} old
mv -f ${result} live
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk