diff options
author | Ernie Hershey <ernie.hershey@10gen.com> | 2013-10-02 12:45:01 -0400 |
---|---|---|
committer | Ernie Hershey <ernie.hershey@10gen.com> | 2013-10-04 13:25:27 -0400 |
commit | 886e2c6ff3f35c40ac6bd8dd3bd5e8d9159f63e6 (patch) | |
tree | aba2de801802a7b2d023e515983271789e4cc22a /buildscripts/consolidate-repos.sh | |
parent | a83a7fb0788ddb589a18216abfea06c6f264921b (diff) | |
download | mongo-886e2c6ff3f35c40ac6bd8dd3bd5e8d9159f63e6.tar.gz |
SERVER-10581 Ignore enterprise packages in consolidate-repos.sh
Diffstat (limited to 'buildscripts/consolidate-repos.sh')
-rwxr-xr-x | buildscripts/consolidate-repos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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" |