$INSTDIR picking up on prev installation
Hi all,
I'm creating two different installers from the same machine.
Once I install one software, the installer for the other one picks the same $INSTDIR value of the first installation, disregarding the value defined in SetOutPath.
This creates a problem because the new software is basically installed on the same install folder of the other software. All I want is to have each software installed in two different places, not on top of each other.
Here's my code:
Section "MainSection" SEC01
SetOutPath "$INSTDIR"
SetOverwrite ifnewer
File "${PRODUCT_EXE}"
...
SectionEnd
Any ideas to address this are greatly appreciated.Cheers,
Marty