Merge "Dont fail if we have no old-style package-installs"

This commit is contained in:
Jenkins 2015-02-28 18:05:27 +00:00 committed by Gerrit Code Review
commit 226eaa3e3f
1 changed files with 3 additions and 1 deletions

View File

@ -62,4 +62,6 @@ for PACKAGEFILE in $(find $WORKDIR -maxdepth 1 -name "package-installs-*" ); do
done < $PACKAGEFILE
done
install-packages $PACKAGES
if [ -n "$PACKAGES" ]; then
install-packages $PACKAGES
fi