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