Skip to content

Commit

Permalink
feat:(nsis): Add ability to have a custom finish page (#5051)
Browse files Browse the repository at this point in the history
  • Loading branch information
IcyPalm authored Jul 9, 2020
1 parent db6e762 commit f20eca9
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@
!endif

!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!ifmacrodef customFinishPage
!insertmacro customFinishPage
!else
!insertmacro MUI_PAGE_FINISH
!endif
!else
!insertmacro MUI_UNPAGE_WELCOME
!ifndef INSTALL_MODE_PER_ALL_USERS
Expand Down

0 comments on commit f20eca9

Please sign in to comment.