diff --git a/rpms/awips2.edex/deploy.builder/build.sh b/rpms/awips2.edex/deploy.builder/build.sh index d2dddda38b..58333680ca 100644 --- a/rpms/awips2.edex/deploy.builder/build.sh +++ b/rpms/awips2.edex/deploy.builder/build.sh @@ -113,12 +113,8 @@ DIST="${WORKSPACE}/build.edex/edex/dist" for edex_zip in `cd ${DIST}; ls -1;`; do edex_component=`python -c "zipFile='${edex_zip}'; componentName=zipFile.replace('.zip',''); print componentName;"` - - # Check if component is in the ignore file, do not build an RPM if so. - if ! grep -Fxq "${edex_component}" ${WORKSPACE}/build.edex/component.ignore.txt; then - export COMPONENT_NAME="${edex_component}" - buildRPM "Installer.edex-component" - unset COMPONENT_NAME - fi + export COMPONENT_NAME="${edex_component}" + buildRPM "Installer.edex-component" + unset COMPONENT_NAME done