@@ -315,6 +315,9 @@ private command toolsBuilderMakeInstaller pVersion, pEdition, pPlatform, pIdeFol
315315 put pPackageFile into tParams ["payload" ]
316316 put tOutputFileStub & ".unsigned.exe" into tParams ["output" ]
317317
318+ // libURL is needed in the timestamp processing
319+ start using stack (builderRepoFolder() & slash & "ide-support" & slash & "revliburl.livecodescript" )
320+
318321 if pEdition is "Commercial" then
319322 put builderCommercialResourceFolder() & "/installer.ico" into tParams ["appicon" ]
320323 end if
@@ -327,12 +330,13 @@ private command toolsBuilderMakeInstaller pVersion, pEdition, pPlatform, pIdeFol
327330 end if
328331
329332 -- Next we sign the installer using the certificate (if available)
330- if there is a folder (builderSystemFolder() & slash & "certificates" ) then
333+ put builderPrivateRepoFolder() & slash & "certificates" into tCertificatesFolder
334+ if there is a folder (tCertificatesFolder ) then
331335 put tParams ["output" ] into tSignParams ["input" ]
332336 put tOutputFileStub & ".exe" into tSignParams ["output" ]
333- put builderSystemFolder() & slash & "certificates /runrev_bin.spc" into tSignParams ["certificate" ]
334- put builderSystemFolder() & slash & "certificates /runrev.pvk" into tSignParams ["privatekey" ]
335- put word 1 of url ("file:" & builderSystemFolder() & slash & "certificates /runrev_password.txt" ) into tSignParams ["passphrase" ]
337+ put tCertificatesFolder & " /runrev_bin.spc" into tSignParams ["certificate" ]
338+ put tCertificatesFolder & " /runrev.pvk" into tSignParams ["privatekey" ]
339+ put word 1 of url ("file:" & tCertificatesFolder & " /runrev_password.txt" ) into tSignParams ["passphrase" ]
336340 put "http://timestamp.verisign.com/scripts/timstamp.dll" into tSignParams ["timestamper" ]
337341 put "http://www.runrev.com" into tSignParams ["url" ]
338342 if pEdition is "Community" then
0 commit comments