Skip to content

Commit

Permalink
feat(nsis): display required disk space
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Velizhanin authored and Nikolay Velizhanin committed Apr 13, 2023
1 parent cbcab51 commit c830d33
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/app-builder-lib/templates/nsis/common.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ Name "${PRODUCT_NAME}"
SectionSetSize ${SECTION_ID} ${APP_64_UNPACKED_SIZE}
!endif
!else
SectionSetSize ${SECTION_ID} ${APP_32_UNPACKED_SIZE}
!ifdef APP_32_UNPACKED_SIZE
SectionSetSize ${SECTION_ID} ${APP_32_UNPACKED_SIZE}
!endif
!endif
!macroend

Expand Down

0 comments on commit c830d33

Please sign in to comment.