mirror of
https://github.com/hadolint/hadolint-action.git
synced 2026-09-03 22:29:22 +00:00
fix: Fix problem matcher (#14)
This commit is contained in:
+10
-1
@@ -1,5 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo '::add-matcher::problem-matcher.json'
|
||||
# The problem-matcher definition must be present in the repository
|
||||
# checkout (outside the Docker container running hadolint). We create
|
||||
# a temporary folder and copy problem-matcher.json to it and make it
|
||||
# readable.
|
||||
TMP_FOLDER=$(mktemp -d -p .)
|
||||
cp /problem-matcher.json "${TMP_FOLDER}"
|
||||
chmod -R a+rX "${TMP_FOLDER}"
|
||||
trap "rm -rf \"${TMP_FOLDER}\"" EXIT
|
||||
|
||||
echo "::add-matcher::${TMP_FOLDER}/problem-matcher.json"
|
||||
|
||||
hadolint "$@"
|
||||
|
||||
Reference in New Issue
Block a user