Move tests to a sub folder.
This commit is contained in:
parent
55c1a1e371
commit
019a9080d6
|
@ -1,3 +1,6 @@
|
|||
lua test.lua
|
||||
echo
|
||||
|
||||
lua5.1 test.lua
|
||||
echo
|
||||
|
|
@ -1,3 +1,5 @@
|
|||
package.path = package.path .. ";../?.lua"
|
||||
|
||||
-- Hack to disable color support
|
||||
local getenv = os.getenv
|
||||
os.getenv = function(sym) return (sym == "TERM") and "dumb" or getenv(sym) end
|
Loading…
Reference in New Issue