You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pi...@apache.org on 2017/10/26 08:06:55 UTC

git commit: [flex-utilities] [refs/heads/develop] - FLEX-35295 - Fix hangs in validation of osmf.swc

Repository: flex-utilities
Updated Branches:
  refs/heads/develop 72c0ebc00 -> 74278d62f


FLEX-35295 - Fix hangs in validation of osmf.swc


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/74278d62
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/74278d62
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/74278d62

Branch: refs/heads/develop
Commit: 74278d62f8e782516ee1a29bd68d805e48bd94c5
Parents: 72c0ebc
Author: Piotr Zarzycki <pi...@gmail.com>
Authored: Thu Oct 26 10:06:51 2017 +0200
Committer: Piotr Zarzycki <pi...@gmail.com>
Committed: Thu Oct 26 10:06:51 2017 +0200

----------------------------------------------------------------------
 .../ant_on_air/src/org/apache/flex/ant/tags/Unzip.as           | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/74278d62/flex-installer/ant_on_air/src/org/apache/flex/ant/tags/Unzip.as
----------------------------------------------------------------------
diff --git a/flex-installer/ant_on_air/src/org/apache/flex/ant/tags/Unzip.as b/flex-installer/ant_on_air/src/org/apache/flex/ant/tags/Unzip.as
index 43e08bc..8db53de 100644
--- a/flex-installer/ant_on_air/src/org/apache/flex/ant/tags/Unzip.as
+++ b/flex-installer/ant_on_air/src/org/apache/flex/ant/tags/Unzip.as
@@ -137,14 +137,12 @@ package org.apache.flex.ant.tags
         {
             if (Capabilities.os.indexOf("Win") != -1 && srcFile.extension == "zip")
             {
-                if (winUnzip(srcFile))
-                {
-                    dispatchEvent(new Event(Event.COMPLETE));
-                }
+                winUnzip(srcFile);
             }
             else
             {
                 unzip(srcFile);
+                dispatchEvent(new Event(Event.COMPLETE));
             }
         }