summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-12-06 19:58:19 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-12-06 19:58:19 +0000
commit4d973c30b5828b3f31d9e2be90adc3aac2ba8049 (patch)
treec7918484ff657ead876177bc7b54948a4016b81d
parent0976bfc1e74a9f5c7bab72aa46dfce36588d4a67 (diff)
ignore snapshot directory
-rw-r--r--distrib/sets/checkflist6
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/sets/checkflist b/distrib/sets/checkflist
index 007bd071a79..d98a6125511 100644
--- a/distrib/sets/checkflist
+++ b/distrib/sets/checkflist
@@ -1,5 +1,5 @@
#!/bin/sh -x
-# $OpenBSD: checkflist,v 1.8 2003/07/02 02:08:02 avsm Exp $
+# $OpenBSD: checkflist,v 1.9 2003/12/06 19:58:18 deraadt Exp $
#
# Copyright (c) 2001 Theo de Raadt
# All rights reserved.
@@ -33,5 +33,5 @@ TMP=`mktemp /tmp/_ckr.XXXXXXXXXX` || exit 1
trap 'rm -f $TMP' 0 1 15
sh makeflist > $TMP
-( cd $DESTDIR ; find . \( -type d -o -type f -o -type l \) ) | sort -H | \
- diff $TMP -
+( cd $DESTDIR ; find . \( -type d -o -type f -o -type l \) ) | \
+ grep -v '^\./snapshot' | sort -H | diff $TMP -