Skip to content

Commit b2f5be4

Browse files
committed
include the 32/64 type in the suggested install path
1 parent 5dd3f34 commit b2f5be4

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

portable/installer.nsi

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Licensed under the terms of the MIT License
1212
; These lines are automatically replaced when creating installer:
1313
; (see winpython/make.py)
1414
!define DISTDIR "D:\Pierre\maketest\winpython-2.7.3.amd64"
15-
!define ARCH "16bit"
15+
!define ARCH "64"
1616
!define VERSION "2.7.3.0"
1717
; 2018-04-04 need to minimize path length of installation further: remove flavor in install path
1818
!define VERSION_INSTALL "2.7.3.0"
@@ -49,7 +49,8 @@ OutFile "${DISTDIR}\..\${ID}${ARCH}-${VERSION}${RELEASELEVEL}.exe"
4949
;InstallDir "$EXEDIR\${ID_INSTALL}-${VERSION_INSTALL}${RELEASELEVEL}"
5050
; 2018-04-20 need to minimize path length of installation:
5151
;InstallDir "$EXEDIR\${ID_INSTALL}"
52-
InstallDir "$EXEDIR\${ID_INSTALL}-${VERSION_INSTALL}${RELEASELEVEL}"
52+
; 2018-12-10 keep 64 for 7zip similarity
53+
InstallDir "$EXEDIR\${ID_INSTALL}${ARCH}-${VERSION_INSTALL}${RELEASELEVEL}"
5354

5455
BrandingText "${BRANDING}"
5556
XPStyle on

portable/installer_INNO.iss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
; These lines are automatically replaced when creating installer:
1111
; (see winpython/make.py)
1212
#define DISTDIR "C:\WinP\bd36\buPs2\winp64-3.6.x.0"
13-
#define ARCH "64bit"
13+
#define ARCH "64"
1414
#define VERSION "3.6.7.0Ps2"
1515
; 2018-04-04 need to minimize path length of installation further: remove flavor in install path
1616
#define VERSION_INSTALL "3670"
@@ -58,7 +58,10 @@ AppUpdatesURL={#MyAppURL}
5858
;non portable mode if ever wanted FLIPFLAP
5959
;DefaultDirName={pf}\{#ID_INSTALL}-{#VERSION_INSTALL}{#RELEASELEVEL}
6060
;non portable mode
61-
DefaultDirName={src}\{#ID_INSTALL}-{#VERSION_INSTALL}{#RELEASELEVEL}
61+
;
62+
;2018-12-10: making 64 art of the install path (7zip similarity)
63+
;DefaultDirName={src}\{#ID_INSTALL}-{#VERSION_INSTALL}{#RELEASELEVEL}
64+
DefaultDirName={src}\{#ID_INSTALL}{#ARCH}-{#VERSION_INSTALL}{#RELEASELEVEL}
6265

6366
DefaultGroupName={#ID}
6467
DisableProgramGroupPage=yes

0 commit comments

Comments
 (0)