diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-11-30 16:43:16 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-11-30 16:43:16 +0000 |
commit | b7790a604438b251c25dd8fa609e1867b52795ad (patch) | |
tree | 48ee5f77d1b2bfa41e45a306d31e36c60285904a /scripts | |
parent | 01a038bd56e2988242b82fa0fc21869264099873 (diff) | |
download | gstreamer-b7790a604438b251c25dd8fa609e1867b52795ad.tar.gz |
prune empty dirs when updating
Original commit message from CVS:
prune empty dirs when updating
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/cvs-update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cvs-update.sh b/scripts/cvs-update.sh index 3ab8b17f77..fb8ea28833 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 -d + cvs update -dP if test $? -ne 0 then FAILURE="$FAILURE$m: update\n" |