From: Chris Elliott Date: Thu, 29 Mar 2007 09:01:22 +0000 (+0000) Subject: only get todays files from top level dir X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7c5e27c0e5d1fecfc6098189b1104afe03332ccb?hp=e7aab1094ddc05b3f74bf6a9c71825f0d90819fb only get todays files from top level dir git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45102 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/build/script/rebuild-makefiles.sh b/build/script/rebuild-makefiles.sh index 95f8bfdac5..2dd2abe5fd 100644 --- a/build/script/rebuild-makefiles.sh +++ b/build/script/rebuild-makefiles.sh @@ -180,11 +180,11 @@ add_win_files () { ### starts with wx***.zip -for f in `find ${WINSRCDIR}/ -name wx\*.zip ` ; do +for f in `find ${WINSRCDIR}/ -maxdepth 0 -name wx\*.zip ` ; do cp $f ${WORKDIR}/archives/win/`basename $f | sed -e "s/.zip//"`-${CURDATE}.zip done -for f in `find ${WINSRCDIR}/ -name wx\*.exe ` ; do +for f in `find ${WINSRCDIR}/ -maxdepth 0 -name wx\*.exe ` ; do cp $f ${WORKDIR}/archives/win/`basename $f | sed -e "s/.exe//"`-${CURDATE}.exe done