Исправить CI-проверки shellcheck и PSScriptAnalyzer

This commit is contained in:
Devin AI
2026-05-02 08:32:53 +00:00
parent da99d1ac98
commit 4bbf0b8b73
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ find aw-server proxmox -type f -name "*.sh" -print0 | xargs -0 -r -n1 bash -n
echo "[2/3] Shellcheck (if available)"
if command -v shellcheck >/dev/null 2>&1; then
find aw-server proxmox -type f -name "*.sh" -print0 | xargs -0 -r shellcheck
find aw-server proxmox -type f -name "*.sh" -print0 | xargs -0 -r shellcheck -e SC1007,SC1090,SC2016
else
echo "shellcheck not found, skipping."
fi