Fixing issue with dynamic loader (program path).

This commit is contained in:
FlightControl_Master 2018-03-12 16:44:47 +01:00
parent 6f1e483fd7
commit 7fe333cc35

View File

@ -11,7 +11,7 @@ __Moose.Include = function( IncludeFile )
if f == nil then
error ("Moose: Could not load Moose file " .. IncludeFile )
else
env.info( "Moose: " .. IncludeFile .. " dynamically loaded from " .. __Moose.ProgramPath )
env.info( "Moose: " .. IncludeFile .. " dynamically loaded." )
return f()
end
end