Skip to content

Commit

Permalink
make nsis install script... work?
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdm committed Mar 1, 2021
1 parent 5e79867 commit 0da77cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ icebreaker-$(VERSIONSTRING).exe: icebreaker.nsi icebreaker-$(VERSIONSTRING).zip
unzip -b icebreaker-$(VERSIONSTRING).zip
touch icebreaker-$(VERSIONSTRING)/lockhelper.lck
(cd icebreaker-$(VERSIONSTRING); \
$(MAKENSIS) -NOCD ../icebreaker.nsi; \
$(MAKENSIS) -NOCD -INPUTCHARSET UTF8 ../icebreaker.nsi; \
test -f icebreaker-$(VERSIONSTRING).exe)
mv -f icebreaker-$(VERSIONSTRING)/icebreaker-$(VERSIONSTRING).exe icebreaker-$(VERSIONSTRING).exe
[ -d icebreaker-$(VERSIONSTRING) ] && rm -rf icebreaker-$(VERSIONSTRING) || true
Expand Down
5 changes: 1 addition & 4 deletions icebreaker.nsi.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,9 @@ CRCCheck on
InstallDir $PROGRAMFILES\IceBreaker
InstallDirRegKey HKLM "Software\IceBreaker" "InstallDir"

LicenseText "IceBreaker is Free Software; you can redistribute or modify it under the terms of the GNU GPL. Copyright 2000-2021 Matthew Miller <mattdm@mattdm.org>, et al." "Continue"
LicenseText "IceBreaker is Free Software; you can redistribute or modify it under the terms of the GNU GPL. Copyright (c) 2000-2021 Matthew Miller <mattdm@mattdm.org>, et al." "Continue"
LicenseData "LICENSE.txt"

DirShow show
DirText "Visit the IceBreaker web site at <http://www.mattdm.org/icebreaker/> to get more information or to check for the latest version. IceBreaker development is ongoing, and we welcome feedback and other contributions." "Where should IceBreaker be installed?"

InstallColors C0C0C0 404040
InstProgressFlags smooth colored
ShowInstDetails show
Expand Down

0 comments on commit 0da77cc

Please sign in to comment.