summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-05-21 00:12:54 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-05-21 00:12:54 +0000
commitac9b53fbebcc694100a5980a96ced4f20a4fd994 (patch)
tree9b98b942510f49f8f225f7ab46ed37816dd5d22c
parenta75abda312dec579a40702f4af4e52cfc146377f (diff)
Install InspGUI to $INSTDIR, not $INSTDIR\Bin
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7088 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--win/inspircd.nsi4
1 files changed, 3 insertions, 1 deletions
diff --git a/win/inspircd.nsi b/win/inspircd.nsi
index c5eae6834..88a5ecb8a 100644
--- a/win/inspircd.nsi
+++ b/win/inspircd.nsi
@@ -54,9 +54,11 @@ ShowInstDetails show
ShowUnInstDetails show
Section "Binary Executable" SEC01
- SetOutPath "$INSTDIR\bin"
+ SetOutPath "$INSTDIR"
SetOverwrite ifnewer
File "..\bin\debug\InspGUI.exe"
+ SetOutPath "$INSTDIR\bin"
+ SetOverwrite ifnewer
File "..\bin\debug\bin\inspircd.exe"
CreateDirectory "$SMPROGRAMS\InspIRCd"
CreateShortCut "$SMPROGRAMS\InspIRCd\InspIRCd.lnk" "$INSTDIR\InspGUI.exe"