Files
Factory/edge-build-checks/10-helm-lint
2025-04-30 16:42:54 +02:00

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