From 770c6677947f1be98c6ecde9dcadbf790427562e Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Tue, 18 Nov 2025 23:14:17 -0500 Subject: [PATCH] Shader script: full path to QSB --- Bin/dev/shaders-compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bin/dev/shaders-compile.sh b/Bin/dev/shaders-compile.sh index b9f76a80..f59a469b 100755 --- a/Bin/dev/shaders-compile.sh +++ b/Bin/dev/shaders-compile.sh @@ -26,7 +26,7 @@ for shader in "$SOURCE_DIR"*.frag; do output_path="$DEST_DIR$shader_name.frag.qsb" # Construct and run the qsb command. - qsb --qt6 -o "$output_path" "$shader" + /usr/lib/qt6/bin/qsb --qt6 -o "$output_path" "$shader" # Print a message to confirm compilation. echo "Compiled $shader to $output_path"