13 lines
158 B
Bash
13 lines
158 B
Bash
#!/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
|