From 6068e9f08a16580da1300acf1d869be37fbfa984 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 22 Mar 2026 02:28:49 +1100 Subject: [PATCH] ci: use abs path to qmllint --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index de8c0f60..7962963c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -39,5 +39,5 @@ jobs: set -l qml_files (string match -vr '(build|modules/controlcenter)/.*' **.qml) # Lint - set -l lint_out (qmllint --import disable $args $qml_files 2>&1 | tee /dev/stderr) + set -l lint_out (/usr/lib/qt6/bin/qmllint --import disable $args $qml_files 2>&1 | tee /dev/stderr) test -z "$lint_out" || exit 1