You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/04/06 17:02:29 UTC

[20/50] git commit: [flex-falcon] [refs/heads/master] - - Made the build use the FLASHPLAYER_DEBUGGER environment variable.

- Made the build use the FLASHPLAYER_DEBUGGER environment variable.


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/5ff0219a
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/5ff0219a
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/5ff0219a

Branch: refs/heads/master
Commit: 5ff0219abce37d38b22d3acb15706fd8a992028e
Parents: 82df476
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Tue Mar 8 13:52:07 2016 +0100
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Tue Mar 8 13:52:07 2016 +0100

----------------------------------------------------------------------
 compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/5ff0219a/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java
----------------------------------------------------------------------
diff --git a/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java b/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java
index 09f41c3..a1f25e7 100644
--- a/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java
+++ b/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java
@@ -57,7 +57,8 @@ public class MavenTestAdapter implements ITestAdapter {
     public File getFlashplayerDebugger() {
         // TODO: If the archive isn't unpacked, unpack it.
         // TODO: Return a reference to the player debugger executable, depending on the current platform.
-        return new File("/Users/christoferdutz/Devtools/Adobe/Flash/19.0/Flash Player.app/Contents/MacOS/Flash Player Debugger");
+        String FLASHPLAYER_DEBUGGER = System.getProperty("FLASHPLAYER_DEBUGGER", null);
+        return new File(FLASHPLAYER_DEBUGGER);
         /*return getDependency("com.adobe.flash.runtime", "player-debugger",
                 System.getProperty("flashVersion"), "zip", null);*/
     }