update script (again)

This commit is contained in:
Matthew 2025-08-16 08:50:29 +10:00
parent 1387e0debd
commit da1859a68a

View File

@ -46,8 +46,8 @@ if [ -x "$(command -v ldc2)" ]; then d_compiler="ldc2";
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="${build}/vulkan_codegen"
codegen_src="${script_dir}/vulkan_codegen.d"
codegen_out="${build}/vulkan_codegen"
$d_compiler $codegen_src $out $codegen_out