diff --git a/nsis/src/plugin-resources/BrandingImage.nsh b/nsis/src/plugin-resources/BrandingImage.nsh index ef9bd91c..6b61b4f0 100644 --- a/nsis/src/plugin-resources/BrandingImage.nsh +++ b/nsis/src/plugin-resources/BrandingImage.nsh @@ -1,10 +1,9 @@ ; macro for the image on the install screen !macro BrandingImage IMAGE PARMS - Push $0 - GetTempFileName $0 - File /oname=$0 "${IMAGE}" - SetBrandingImage ${PARMS} $0 - Delete $0 - Pop $0 -!macroend - + Push $0 + GetTempFileName $0 + File /oname=$0 "${IMAGE}" + SetBrandingImage ${PARMS} $0 + Delete $0 + Pop $0 +!macroend \ No newline at end of file