From 68484a08d48ae5a969da54e1d0b3bc64203db74a Mon Sep 17 00:00:00 2001 From: RazvanN7 Date: Fri, 16 Jul 2021 11:17:09 +0300 Subject: [PATCH] Fix Issue 21222 - Add windows 64 bit version of rdmd --- script/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/install.sh b/script/install.sh index 92635f1f..74d90c1c 100755 --- a/script/install.sh +++ b/script/install.sh @@ -1197,7 +1197,7 @@ write_env_vars() { echo "set _OLD_D_PATH=%PATH%" echo "set PATH=${DUB_BIN_PATH:+$(cygpath -w "${DUB_BIN_PATH}");}${winpath};%PATH%" if [[ $PROCESSOR_ARCHITECTURE != x86 ]]; then - echo "set PATH=${winpath}64;%PATH%" + echo "set PATH=${winpath};%${winpath}64;PATH%" fi } > "$ROOT/$1/activate.bat" fi