#!/bin/bash HELM="/usr/bin/helm" TOPDIR=/usr/src/packages/HELM failed=0 if [ -x $HELM ]; then $HELM lint "$TOPDIR"/*.tgz failed=$? fi exit $failed