Skip to content

Commit 7354928

Browse files
committed
Fix Issue 21222 - Add windows 64 bit version of rdmd
1 parent 7493f91 commit 7354928

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

script/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ write_env_vars() {
11971197
echo "set _OLD_D_PATH=%PATH%"
11981198
echo "set PATH=${DUB_BIN_PATH:+$(cygpath -w "${DUB_BIN_PATH}");}${winpath};%PATH%"
11991199
if [[ $PROCESSOR_ARCHITECTURE != x86 ]]; then
1200-
echo "set PATH=${winpath}64;%PATH%"
1200+
echo "set PATH=${winpath}64;PATH%"
12011201
fi
12021202
} > "$ROOT/$1/activate.bat"
12031203
fi

windows/d2-installer.nsi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ SectionGroup /e "D2"
295295

296296
Section "Add to PATH" AddD2ToPath
297297
${EnvVarUpdate} $0 "PATH" "A" "HKLM" "$INSTDIR\dmd2\windows\bin"
298+
${EnvVarUpdate} $0 "PATH" "A" "HKLM" "$INSTDIR\dmd2\windows\bin64"
298299
SectionEnd
299300

300301

0 commit comments

Comments
 (0)