innoSetupInstallerPath top-level property

String innoSetupInstallerPath
getter/setter pair

The path where the innosetup-6.3.3.exe file will be downloaded.

This path is computed by joining the tempDir with the last component of the innoSetupUrl.

Example: If the tempDir is C:\Users\username\AppData\Local\Temp, then the innoSetupInstallerPath will be C:\Users\username\AppData\Local\Temp\innosetup-6.3.3.exe.

Implementation

String innoSetupInstallerPath = join(tempDir, innoSetupUrl.split('/').last);