makensis-bz2.exe and no files bug
Hi!
I have discovred a bug in NSIS installers made with makensis-bz2.exe that contains no files (no File commands). After I compile them and run them it gives me an error saying "error reading installer info block".
It doesn't happen when I compile with makensis.exe.
I am using NSIS 1.92.
Example code:
OutFile bla.exe
InstallDir "F:\Temp\WinTemp"
Section Main
ExecShell "open" "http://kichik.********/"
MessageBox MB_OK "asdasd"
SectionEnd
KiCHiK