fix(app/actions): quiet dependency check [skip ci]

This commit is contained in:
lowlighter
2022-04-24 14:47:57 -04:00
parent d18f71c12c
commit 4fbb4daff9

View File

@@ -3,7 +3,7 @@ echo "::group::Metrics docker image setup"
echo "GitHub action: $METRICS_ACTION ($METRICS_ACTION_PATH)"
cd $METRICS_ACTION_PATH
for DEPENDENCY in docker jq; do
if ! which $DEPENDENCY; then
if ! which $DEPENDENCY > /dev/null 2>&1; then
echo '::error::"$DEPENDENCY" is not installed on current runner but is needed to run metrics'
MISSING_DEPENDENCIES=1
fi