Browse Source

Reduce verbosity of build scripts.

pull/585/head
Joao Matos 10 years ago
parent
commit
d835a34fbf
  1. 2
      build/Helpers.lua
  2. 4
      build/Tests.lua

2
build/Helpers.lua

@ -95,7 +95,7 @@ function IncludeDir(dir) @@ -95,7 +95,7 @@ function IncludeDir(dir)
fp = path.join(os.getcwd(), fp)
if os.isfile(fp) then
print(string.format(" including %s", dep))
--print(string.format(" including %s", dep))
include(dep)
end
end

4
build/Tests.lua

@ -184,11 +184,11 @@ function SetupTestProjectsCLI(name, extraFiles) @@ -184,11 +184,11 @@ function SetupTestProjectsCLI(name, extraFiles)
end
function IncludeExamples()
print("Searching for examples...")
--print("Searching for examples...")
IncludeDir(examplesdir)
end
function IncludeTests()
print("Searching for tests...")
--print("Searching for tests...")
IncludeDir(testsdir)
end

Loading…
Cancel
Save