From ee20bd2278cc475019297003162208df6634d323 Mon Sep 17 00:00:00 2001 From: Bob Burger Date: Tue, 6 Feb 2024 14:24:33 -0500 Subject: [PATCH] update build.sh to download iconv.dll for ARM64 Windows targets --- .github/workflows/build.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.sh b/.github/workflows/build.sh index 64c1268d4..7981aae75 100755 --- a/.github/workflows/build.sh +++ b/.github/workflows/build.sh @@ -13,9 +13,12 @@ else fi case "$TARGET_MACHINE" in *a6nt) - curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.9/iconv-x64.dll > "$TARGET_MACHINE"/bin/"$TARGET_MACHINE"/iconv.dll + curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.10/iconv-x64.dll > "$TARGET_MACHINE"/bin/"$TARGET_MACHINE"/iconv.dll ;; *i3nt) - curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.9/iconv-x86.dll > "$TARGET_MACHINE"/bin/"$TARGET_MACHINE"/iconv.dll + curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.10/iconv-x86.dll > "$TARGET_MACHINE"/bin/"$TARGET_MACHINE"/iconv.dll + ;; + *arm64nt) + curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.10/iconv-arm64.dll > "$TARGET_MACHINE"/bin/"$TARGET_MACHINE"/iconv.dll ;; esac