Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
msi: move git.ico so all installers can access it
Browse files Browse the repository at this point in the history
The git.ico was moved to the main `build-extra` directory so that all
installers have access to it from a common, shared location. Updated the
`install.iss` file to point to the icon's new location. Also updated the
binder arguments passed to `light.exe` in MSI's `release.sh` file--it's no
longer necessary to have to "reach into" `../installer` for various
files such as the icon and the ReleaseNotes.* files.

Signed-off-by: Craig E. Shea <craig.e.shea@gmail.com>
  • Loading branch information
fourpastmidnight committed May 23, 2016
1 parent 58db638 commit 90ac80d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion installer/install.iss
Expand Up @@ -73,7 +73,7 @@ VersionInfoVersion={#APP_VERSION}
#endif

; Cosmetic
SetupIconFile={#SourcePath}\git.ico
SetupIconFile={#SourcePath}\..\git.ico
WizardImageBackColor=clWhite
WizardImageStretch=no
WizardImageFile={#SourcePath}\git.bmp
Expand Down
2 changes: 1 addition & 1 deletion msi/release.sh
Expand Up @@ -184,6 +184,6 @@ wix/light.exe \
obj/GitProduct.wixobj \
obj/GitComponents.wixobj \
-o $TARGET -ext WixUtilExtension \
-b / -b ../installer &&
-b / -b ../ &&
echo "Success! You will find the new .msi at \"$TARGET\"." ||
die "Could not generate $TARGET"

0 comments on commit 90ac80d

Please sign in to comment.