diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-07-12 06:24:47 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-07-12 06:24:47 -0700 |
commit | 53500f757517c3b3399c8dc5daf144cc8d8bac64 (patch) | |
tree | 7455825f883641e3405d041fbfd7fe88f1950fd3 | |
parent | b39061aebfdfcc817ed99a984abe47a32c449539 (diff) | |
download | txr-53500f757517c3b3399c8dc5daf144cc8d8bac64.tar.gz txr-53500f757517c3b3399c8dc5daf144cc8d8bac64.tar.bz2 txr-53500f757517c3b3399c8dc5daf144cc8d8bac64.zip |
Installer: correct path for deleting sh.exe.
* inst.nsi: delete sh.exe from bin directory, not root.
-rw-r--r-- | inst.nsi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,7 +60,7 @@ section "TXR" SetOutPath $INSTDIR\txr\share\txr\stdlib File share\txr\stdlib\*.txr File share\txr\stdlib\*.tl - Delete /REBOOTOK $INSTDIR\txr\sh.exe + Delete /REBOOTOK $INSTDIR\txr\bin\sh.exe WriteUninstaller $INSTDIR\txr\uninstall.exe CreateDirectory "$SMPROGRAMS\TXR" CreateShortCut "$SMPROGRAMS\TXR\txr.lnk" "$INSTDIR\txr\bin\txr.exe" |