From b844f4ab4d85cebae95a7d337b08dab9bb0ca1df Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Wed, 26 Oct 2005 10:11:25 +0000 Subject: [PATCH] make sure dirs get checked out Original commit message from CVS: make sure dirs get checked out --- scripts/cvs-update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cvs-update.sh b/scripts/cvs-update.sh index 393b1fa09f..3ab8b17f77 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"