From a41d8804687fa6e635abad21567974d4e55bce84 Mon Sep 17 00:00:00 2001 From: Timo Date: Sun, 29 May 2022 02:23:40 +0200 Subject: [PATCH] fix(app/metrics): output of missing dependencies (#1077) --- source/app/action/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/app/action/run.sh b/source/app/action/run.sh index 6c9423a7..551e9cfd 100644 --- a/source/app/action/run.sh +++ b/source/app/action/run.sh @@ -4,7 +4,7 @@ echo "GitHub action: $METRICS_ACTION ($METRICS_ACTION_PATH)" cd $METRICS_ACTION_PATH for DEPENDENCY in docker jq; do if ! which $DEPENDENCY > /dev/null 2>&1; then - echo '::error::"$DEPENDENCY" is not installed on current runner but is needed to run metrics' + echo "::error::\"$DEPENDENCY\" is not installed on current runner but is needed to run metrics" MISSING_DEPENDENCIES=1 fi done