From 3b7396a7c387146fe65d67c34e16483afab50b87 Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Sun, 22 Sep 2024 00:25:55 -0300 Subject: [PATCH] linted grab extensions hook --- .hemtt/hooks/post_build/grab_extensions.rhai | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.hemtt/hooks/post_build/grab_extensions.rhai b/.hemtt/hooks/post_build/grab_extensions.rhai index e28af39..e257bd1 100644 --- a/.hemtt/hooks/post_build/grab_extensions.rhai +++ b/.hemtt/hooks/post_build/grab_extensions.rhai @@ -7,8 +7,8 @@ let dllDir = HEMTT_RFS.join("target").join("release"); let dll = dllDir.join(DLL_NAME_32); if dllDir.exists() && dll.is_file() && dll.exists() { - print("Adding x86 DLL file to Release"); + print("Adding x64 DLL file to Release"); dll.copy(HEMTT_OUT.join(DLL_NAME_32)); HEMTT_OUT.join(DLL_NAME_32).copy(HEMTT_OUT.join(DLL_NAME_64)); - print("Added x86 DLL file to Release"); + print("Added x64 DLL file to Release"); };