From b824cd7809eda4c8232517da8134c5c2b132ed54 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Sun, 10 Aug 2025 14:44:36 -0400 Subject: [PATCH] qmlfmt: reports error and filename --- Bin/run-qmlfmt.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bin/run-qmlfmt.sh b/Bin/run-qmlfmt.sh index 85b8693..39f2579 100755 --- a/Bin/run-qmlfmt.sh +++ b/Bin/run-qmlfmt.sh @@ -4,4 +4,5 @@ # Can be installed from AUR "qmlfmt-git" # Requires qt6-5compat -find . -name "*.qml" -exec qmlfmt -e -b 120 -t 2 -i 2 -w {} \; \ No newline at end of file +#find . -name "*.qml" -exec sh -c 'echo "Formatting $0..."; qmlfmt -e -b 120 -t 2 -i 2 -w "$0"' {} \; +find . -name "*.qml" -print -exec qmlfmt -e -b 120 -t 2 -i 2 -w {} \; \ No newline at end of file