Skip to content

Commit

Permalink
hfsexplorer.nsi: Added 'bin' directory to directories to uninstall.
Browse files Browse the repository at this point in the history
Also sorted list of directories to uninstall.
  • Loading branch information
unsound committed Dec 2, 2014
1 parent 6630546 commit 2a75b59
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions doc/hfsexplorer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -317,15 +317,17 @@ Section Uninstall
Delete "$INSTDIR\${PRODUCT_NAME}.url"
Delete "$INSTDIR\uninst.exe"

Delete "$INSTDIR\lib\*.*"
RMDir "$INSTDIR\lib"
Delete "$INSTDIR\res\*.*"
RMDir "$INSTDIR\res"
Delete "$INSTDIR\bin\*.*"
RMDir "$INSTDIR\bin"
Delete "$INSTDIR\doc\html\img\*.*"
RMDir "$INSTDIR\doc\html\img"
Delete "$INSTDIR\doc\html\*.*"
RMDir "$INSTDIR\doc\html"
RMDir "$INSTDIR\doc"
Delete "$INSTDIR\lib\*.*"
RMDir "$INSTDIR\lib"
Delete "$INSTDIR\res\*.*"
RMDir "$INSTDIR\res"
Delete "$INSTDIR\*.*"
RMDir "$INSTDIR"

Expand Down

0 comments on commit 2a75b59

Please sign in to comment.