diff --git a/.github/workflows/Shellcheck.yml b/.github/workflows/Shellcheck.yml index adfa4a3..c3d830e 100644 --- a/.github/workflows/Shellcheck.yml +++ b/.github/workflows/Shellcheck.yml @@ -89,7 +89,9 @@ jobs: \( -name "*.plist" -o -name "*.mobileconfig" \)) for file in "${FILES[@]}"; do - if ! /usr/bin/plutil -lint "${file}" ; then + if /usr/bin/plutil -lint "${file}" ; then + echo "[PASS] $(/usr/bin/basename "${file}")" + else echo "[FAIL] $(/usr/bin/basename "${file}")" ERRORS+=("${file}") fi