summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-10-26 10:11:25 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-10-26 10:11:25 +0000
commitb844f4ab4d85cebae95a7d337b08dab9bb0ca1df (patch)
treeaed722460e9942f614cd0fcdbd34b015b50f1698
parentd11a04618840c8cb246d564ab35fd9bfdd37319c (diff)
make sure dirs get checked out
Original commit message from CVS: make sure dirs get checked out
-rwxr-xr-xscripts/cvs-update.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cvs-update.sh b/scripts/cvs-update.sh
index 393b1fa09..3ab8b17f7 100755
--- a/scripts/cvs-update.sh
+++ b/scripts/cvs-update.sh
@@ -16,7 +16,7 @@ for m in \
; do
if test -d $m; then
cd $m
- cvs update
+ cvs update -d
if test $? -ne 0
then
FAILURE="$FAILURE$m: update\n"