1
0

Added CircleCI for stylechecking.

This will allow us to remove the stylecheck from Travis builds, making them a bit faster, and having fast style checks
This commit is contained in:
Mattes D
2015-09-17 11:20:10 +02:00
parent d041057da2
commit 9871c0b073
11 changed files with 69 additions and 523 deletions

View File

@@ -412,6 +412,12 @@ end
-- Process the files in the list:
for _, fnam in ipairs(ToProcess) do
-- Remove the optional "./" prefix:
if (fnam:sub(1, 2) == "./") then
fnam = fnam:sub(3)
end
ProcessItem(fnam)
end