What does the +2 in "IfErrors 0 +2" mean?
What does the +2 in "IfErrors 0 +2" mean?
2 posts
!include LogicLib.nsh+2 basically means skip the next instruction. 0 and +1 is the same thing and effectively skips nothing.
${If} ${Errors}
...
${Else}
...
${EndIf}