From 8ae24d76829392419c9e759d87c0a51c756a5b94 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 16 Aug 2025 08:53:34 +1000 Subject: [PATCH] another time --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 95ba736..f280953 100755 --- a/build.sh +++ b/build.sh @@ -47,7 +47,8 @@ elif [ -x "$(command -v dmd)" ]; then d_compiler="dmd"; else echo "Unable to find D compiler"; exit -1; fi; codegen_src="${script_dir}/vulkan_codegen.d" -codegen_out="--of=${build}/vulkan_codegen" +codegen_out_name="${build}/vulkan_codegen" +codegen_out="--of=${codegen_out_name}" $d_compiler $codegen_src $codegen_out