Move OpenRA.Lint into a --check-yaml utility command.

This commit is contained in:
Paul Chote
2014-12-18 15:15:06 +13:00
committed by Matthias Mailänder
parent 91807cb53c
commit ecd4479807
6 changed files with 35 additions and 146 deletions

View File

@@ -114,14 +114,14 @@ elseif ($command -eq "dependencies")
elseif ($command -eq "test")
{
echo "Testing mods..."
echo "OpenRA.Lint: checking Red Alert mod MiniYAML..."
./OpenRA.Lint.exe --verbose ra
echo "OpenRA.Lint: checking Tiberian Dawn mod MiniYAML..."
./OpenRA.Lint.exe --verbose cnc
echo "OpenRA.Lint: checking Dune 2000 mod MiniYAML..."
./OpenRA.Lint.exe --verbose d2k
echo "OpenRA.Lint: checking Tiberian Sun mod MiniYAML..."
./OpenRA.Lint.exe --verbose ts
echo "Testing Red Alert mod MiniYAML..."
./OpenRA.Utility.exe ra --check-yaml
echo "Testing Tiberian Dawn mod MiniYAML..."
./OpenRA.Utility.exe cnc --check-yaml
echo "Testing Dune 2000 mod MiniYAML..."
./OpenRA.Utility.exe d2k --check-yaml
echo "Testing Tiberian Sun mod MiniYAML..."
./OpenRA.Utility.exe ts --check-yaml
}
else
{