@@ -2414,10 +2414,16 @@ private command revBuildStandaloneDeploy pPlatform, pStackFilePath, pEnginePath,
24142414
24152415 # AL-2015-01-29: [[ Scriptify IDE ]] Add the library inclusions and startup script to the deploy parameters
24162416 if sStandaloneSettingsA ["auxiliary_stackfiles" ] is not empty then
2417- put line 1 of sStandaloneSettingsA ["auxiliary_stackfiles" ] into tDeployInfo ["auxiliary_stackfiles" ]
2417+ repeat for each line tStackFile in sStandaloneSettingsA ["auxiliary_stackfiles" ]
2418+ local tTempStackFile
2419+ put the tempname into tTempStackFile
2420+ revSBResaveScriptOnlyStackAsProperStackFile the short name of stack tStackFile , tStackFile , tTempStackFile
2421+ put tTempStackFile & return after tDeployInfo ["auxiliary_stackfiles" ]
2422+ end repeat
2423+ delete the last char of tDeployInfo ["auxiliary_stackfiles" ]
24182424 end if
24192425 if sStandaloneSettingsA ["startup_script" ] is not empty then
2420- // put sStandaloneSettingsA["startup_script"] into tDeployInfo["startup_script"]
2426+ put sStandaloneSettingsA ["startup_script" ] into tDeployInfo ["startup_script" ]
24212427 end if
24222428
24232429 if pPlatform begins with "MacOSX" then
@@ -2697,10 +2703,10 @@ end revSmartChecking
26972703private command revAddLibrary pLibrary, pAuxStackFile
26982704 if pLibrary is "Internet" then
26992705 put return & the effective filename of stack "revLibURL" after sStandaloneSettingsA ["auxiliary_stackfiles" ]
2700- put "; revInternal__LoadLibrary revLibUrl" after sStandaloneSettingsA ["startup_script" ]
2706+ put return & " revInternal__LoadLibrary revLibUrl" after sStandaloneSettingsA ["startup_script" ]
27012707 else if pAuxStackFile then
27022708 put return & the effective filename of stack pLibrary after sStandaloneSettingsA ["auxiliary_stackfiles" ]
2703- put "; revInternal__LoadLibrary" && quote & pLibrary & quote after sStandaloneSettingsA ["startup_script" ]
2709+ put return & " revInternal__LoadLibrary" && quote & pLibrary & quote after sStandaloneSettingsA ["startup_script" ]
27042710 else
27052711 if sStandaloneSettingsA ["scriptLibraries" ] is not empty then put return after sStandaloneSettingsA ["scriptLibraries" ]
27062712 put pLibrary after sStandaloneSettingsA ["scriptLibraries" ]
0 commit comments