Skip to content
This repository has been archived by the owner on Dec 24, 2018. It is now read-only.

If PROGRAMFILES(x86) is not existed, OS_ARCH is empty, so it is fixed. #35

Merged
merged 1 commit into from Jan 14, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions nvmw.bat
Expand Up @@ -8,7 +8,12 @@ if not defined PATH_ORG (
set "PATH_ORG=%PATH%"
)

set IS64=FALSE
if exist "%PROGRAMFILES(X86)%" if not "%3" == "x86" (
set IS64=TRUE
)

if %IS64% == TRUE (
set OS_ARCH=64
) else (
set OS_ARCH=32
Expand Down