From 5fa246af268021676e559f6811ff2b1e2e5dfa65 Mon Sep 17 00:00:00 2001 From: Nestor Acuna Blanco <37973744+nestoracunablanco@users.noreply.github.com> Date: Fri, 25 Oct 2024 14:46:52 +0200 Subject: [PATCH] fix: lint-metrics scripts (#363) The prom_metric_linter.sh script was missing a shebang line, which caused the lint-metrics make task to fail in certain configurations. Signed-off-by: Nestor Acuna Blanco --- hack/prom_metric_linter.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hack/prom_metric_linter.sh b/hack/prom_metric_linter.sh index 679a7541..bfe87086 100755 --- a/hack/prom_metric_linter.sh +++ b/hack/prom_metric_linter.sh @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + set -e linter_image_tag="v0.0.3"