Add "check-scripts" to make.ps1
This commit is contained in:
committed by
Matthias Mailänder
parent
5a3e61a902
commit
7e7e3723dc
13
make.ps1
13
make.ps1
@@ -35,6 +35,7 @@ if ($args.Length -eq 0)
|
|||||||
echo " 'dependencies' commands to restore removed files."
|
echo " 'dependencies' commands to restore removed files."
|
||||||
echo " test Tests the default mods for errors."
|
echo " test Tests the default mods for errors."
|
||||||
echo " check Checks .cs files for StyleCop violations."
|
echo " check Checks .cs files for StyleCop violations."
|
||||||
|
echo " check-scripts Checks .lua files for syntax errors."
|
||||||
echo " docs Generates the trait and Lua API documentation."
|
echo " docs Generates the trait and Lua API documentation."
|
||||||
echo ""
|
echo ""
|
||||||
$command = (Read-Host "Enter command").Split(' ', 2)
|
$command = (Read-Host "Enter command").Split(' ', 2)
|
||||||
@@ -177,6 +178,18 @@ elseif ($command -eq "check")
|
|||||||
UtilityNotFound
|
UtilityNotFound
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
elseif ($command -eq "check-scripts")
|
||||||
|
{
|
||||||
|
foreach ($script in ls "mods/*/maps/*/*.lua")
|
||||||
|
{
|
||||||
|
luac -p $script
|
||||||
|
}
|
||||||
|
foreach ($script in ls "lua/*.lua")
|
||||||
|
{
|
||||||
|
luac -p $script
|
||||||
|
}
|
||||||
|
echo "Check successfull!"
|
||||||
|
}
|
||||||
elseif ($command -eq "docs")
|
elseif ($command -eq "docs")
|
||||||
{
|
{
|
||||||
if (Test-Path OpenRA.Utility.exe)
|
if (Test-Path OpenRA.Utility.exe)
|
||||||
|
|||||||
Reference in New Issue
Block a user