Parcourir la source

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

Andy Li il y a 11 ans
Parent
commit
c84b54d00b
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  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]);