You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2017/12/01 06:56:25 UTC

[royale-compiler] branch feature/rename updated: handle missing AIR_HOME

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch feature/rename
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/feature/rename by this push:
     new 02b44d2  handle missing AIR_HOME
02b44d2 is described below

commit 02b44d29805fd9301940fdb2c2603c7d3996b045
Author: Alex Harui <ah...@apache.org>
AuthorDate: Thu Nov 30 22:56:17 2017 -0800

    handle missing AIR_HOME
---
 .../src/main/java/org/apache/royale/compiler/config/Configuration.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java b/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java
index 97ba37a..939ae92 100644
--- a/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java
+++ b/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java
@@ -4147,7 +4147,7 @@ public class Configuration
         if (airHome == null)
             airHome = buffer.getToken("env.AIR_HOME");
         if (airHome == null)
-            airHome = "libs/air";
+            airHome = "..";
 
         pathElement = pathElement.replace(PLAYERGLOBAL_HOME_TOKEN, playerglobalHome);
         pathElement = pathElement.replace(AIR_HOME_TOKEN, airHome);

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" <co...@royale.apache.org>'].