Răsfoiți Sursa

Lua: Travis tweaks

Justin Donaldson 9 ani în urmă
părinte
comite
caf35d63f1
1 a modificat fișierele cu 2 adăugiri și 0 ștergeri
  1. 2 0
      tests/RunCi.hx

+ 2 - 0
tests/RunCi.hx

@@ -455,10 +455,12 @@ class RunCi {
 		// to the luarocks install using the luarocks path and env variables
 		var lua_path = commandResult("luarocks", ["path", "--lr-path"]).stdout.trim();
 		Sys.putEnv("LUA_PATH", lua_path);
+		trace(lua_path + " is the value for lua_path");
 
 		// step two of the variable setting
 		var lua_cpath = commandResult("luarocks", ["path", "--lr-cpath"]).stdout.trim();
 		Sys.putEnv("LUA_CPATH", lua_cpath);
+		trace(lua_cpath + " is the value for lua_cpath");
 
 		if (jit) Sys.putEnv("LUAJIT","yes");
 		Sys.putEnv("LUAROCKS", luarocks_version);