Skip to content

Commit

Permalink
alias x86, ia32 to x32
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Feb 13, 2015
1 parent 3ed5401 commit 6fb3002
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
v*/
.idea/
.DS_Store
.DS_Store
node_modules
7 changes: 7 additions & 0 deletions nvmw.bat
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ if %IS64% == TRUE (

if not "%2" == "" (
set OS_ARCH=%2
:: x86, ia32 alias x32
if "%2" == "x86" (
set OS_ARCH=x32
)
if "%2" == "ia32" (
set OS_ARCH=x32
)
)

set NODE_TYPE=node
Expand Down

0 comments on commit 6fb3002

Please sign in to comment.