- gestito ritorno messaggi apply in risultati in caso di errore

- BLADETOWASTE miglikorata e modificata per gestire DOUBLECUT (da completare)
- in BeamExec si eliminano le entità aggiunte non usate
This commit is contained in:
luca.mazzoleni
2025-04-30 23:54:35 +02:00
parent 60ffe9da73
commit 85734fb7a3
6 changed files with 146 additions and 27 deletions
+6 -2
View File
@@ -3,7 +3,7 @@
-- Intestazioni
require( 'EgtBase')
_ENV = EgtProtectGlobal()
EgtEnableDebug( false)
EgtEnableDebug( true)
-- Imposto direttorio libreria specializzata per Travi
EgtAddToPackagePath( BEAM.BASEDIR .. '\\LuaLibs\\?.lua')
@@ -566,7 +566,11 @@ if bToProcess then
for i = 1, #RESULT do
local sMsg = ''
if RESULT[i].sType == 'Feature' then
sMsg = RESULT[i].ChosenStrategy.sInfo
if RESULT[i].ChosenStrategy.bIsApplyOk then
sMsg = RESULT[i].ChosenStrategy.sInfo
else
sMsg = RESULT[i].ChosenStrategy.sApplyInfo
end
elseif RESULT[i].sType == 'Part' then
sMsg = RESULT[i].sMsg
end