From 886e2c6ff3f35c40ac6bd8dd3bd5e8d9159f63e6 Mon Sep 17 00:00:00 2001 From: Ernie Hershey Date: Wed, 2 Oct 2013 12:45:01 -0400 Subject: SERVER-10581 Ignore enterprise packages in consolidate-repos.sh --- buildscripts/consolidate-repos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildscripts/consolidate-repos.sh') diff --git a/buildscripts/consolidate-repos.sh b/buildscripts/consolidate-repos.sh index 261995bf426..7635c178af2 100755 --- a/buildscripts/consolidate-repos.sh +++ b/buildscripts/consolidate-repos.sh @@ -19,7 +19,7 @@ tempfile=`mktemp /tmp/consolidate-repos.XXXXXX` mkdir -p "$repodir" -find "$source_dir" -name \*.rpm -o -name \*.deb -o -name Release | grep -v "$repodir" > "$tempfile" +find "$source_dir" -name \*.rpm -o -name \*.deb -o -name Release | grep -v "$repodir" | grep -v enterprise > "$tempfile" echo "Scanning and copying package files from $source_dir" echo ". = skipping existing file, @ = copying file" -- cgit v1.2.1