Explorar el Código

[TravisCI] convert the swf path to fullpath before running.

Andy Li hace 11 años
padre
commit
c84b54d00b
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      tests/RunTravis.hx

+ 2 - 0
tests/RunTravis.hx

@@ -154,6 +154,8 @@ class RunTravis {
 	}
 
 	static function runFlash(swf:String):Void {
+		swf = FileSystem.fullPath(swf);
+		Sys.println('going to run $swf');
 		switch (systemName) {
 			case "Linux":
 				new Process(Sys.getEnv("HOME") + "/flashplayerdebugger", [swf]);