Error: could not resolve label "_LogicLib_Label_56"
hello,
i just added a download-option to my script but now i get the following error:
Processed 1 file, writing output:here's the section:
Adding plug-ins initializing function... Done!
Error: could not resolve label "_LogicLib_Label_56" in install section "my section" (1)
Error - aborting creation process
Section "my section"i have no idea what this error could mean.
SectionIn 1
SetDetailsPrint textonly
DetailPrint "Looking for new file version"
SetDetailsPrint none
NSISdl::download_quiet /TIMEOUT=10000 http://my.site.com/version.ini $TEMP\version.ini
Pop $R0 ;Get the return value
StrCmp $R0 "success" +2
Goto offinstgad
ReadINIStr $OnlineVG "$TEMP\version.ini" "myprog" "version"
${If} $OnlineVG > $LocalVG
SetDetailsPrint textonly
DetailPrint "Downloading new file version"
SetDetailsPrint none
NSISdl::download /TIMEOUT=10000 http://my.site.com/myprog.zip $TEMP\myprog.zip
Pop $R0 ;Get the return value
StrCmp $R0 "success" +2
Goto offinstgad
SetDetailsPrint textonly
DetailPrint "Decompressing files"
SetDetailsPrint none
nsisunz::UnzipToLog "$TEMP\myprog.zip" "$INSTDIR"
Pop $R0
StrCmp $R0 "success" +3
DetailPrint "$R0" ;print error message to log
Goto offinstgad
Delete "$TEMP\myprog.zip"
${Else}
offinstgad:
...
i have the same function in another section where everything works fine.
thank you in advance.