Added new build system with GitHub Action Workflows

This commit is contained in:
Rolf Geuenich
2023-10-19 13:59:33 +02:00
parent 0658f6dc2b
commit 7c8cca7f56
4 changed files with 293 additions and 4 deletions

View File

@@ -55,6 +55,8 @@ local MooseSourcesFile = assert(io.open( PathConvert(MooseModulesFilePath), "r"
local MooseSource = MooseSourcesFile:read("*l")
while( MooseSource ) do
-- Remove Windows line endings. Can occur when using act
MooseSource = string.gsub(MooseSource, "\r", "")
if MooseSource ~= "" then
MooseSource = string.match( MooseSource, "Scripts/Moose/(.+)'" )