Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorMarkus Knauer2010-05-18 15:29:16 +0000
committerMarkus Knauer2010-05-18 15:29:16 +0000
commit5ed73d6983db3da331ff16d3e341e93630127a75 (patch)
treea4fc7e5861e5a1f8b261c4d67daf68ea422210d2 /releng
parente0a1dfb399d0cee774c8c1265ccc19770223995e (diff)
downloadorg.eclipse.epp.packages-5ed73d6983db3da331ff16d3e341e93630127a75.tar.gz
org.eclipse.epp.packages-5ed73d6983db3da331ff16d3e341e93630127a75.tar.xz
org.eclipse.epp.packages-5ed73d6983db3da331ff16d3e341e93630127a75.zip
* do not build "common" package that does not exist
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.epp.config/startEPP36.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/releng/org.eclipse.epp.config/startEPP36.sh b/releng/org.eclipse.epp.config/startEPP36.sh
index fbf4eb41..e1710e32 100644
--- a/releng/org.eclipse.epp.config/startEPP36.sh
+++ b/releng/org.eclipse.epp.config/startEPP36.sh
@@ -87,7 +87,7 @@ exec 2>&1 | tee ${LOGFILE}
#Build the packages from the list of packages checked into CVS
PACKAGES=""
cvs -q -d :pserver:anonymous@dev.eclipse.org:/cvsroot/technology checkout -P ${CVSPROJECTPATH}
-for file in $(ls ${CVSPROJECTPATH} | grep -v feature | grep -v CVS);
+for file in $(ls ${CVSPROJECTPATH} | grep -v feature | grep -v common | grep -v CVS);
do
PACKAGES="${PACKAGES} ${file##org.eclipse.}"
done

Back to the top