Repository: flex-sdk Updated Branches: refs/heads/develop d63dadf1d -> 9e3619cd9
Ignore failure on copying flash flex kit as it doesn't exist on linux. May be a better way of doing this as it could hide other failures. Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/9e3619cd Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/9e3619cd Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/9e3619cd Branch: refs/heads/develop Commit: 9e3619cd9edb4b120bb4d1ea4e5636b4e84208e4 Parents: d63dadf Author: Justin Mclean <[email protected]> Authored: Sun Dec 31 11:29:36 2017 +1100 Committer: Justin Mclean <[email protected]> Committed: Sun Dec 31 11:29:36 2017 +1100 ---------------------------------------------------------------------- build.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/9e3619cd/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 517bcc2..a9edc9a 100644 --- a/build.xml +++ b/build.xml @@ -920,7 +920,7 @@ There are no known issues. </copy> <!-- frameworks/libs --> - <copy todir="${basedir}/temp/frameworks/libs"> + <copy todir="${basedir}/temp/frameworks/libs" failonerror="false"> <fileset dir="${basedir}/frameworks/libs"> <include name="air/airframework.swc"/> <include name="air/airspark.swc"/> @@ -947,7 +947,7 @@ There are no known issues. </copy> <!-- frameworks/libs/automation --> - <copy todir="${basedir}/temp/frameworks/libs/automation"> + <copy todir="${basedir}/temp/frameworks/libs/automation" failonerror="false"> <fileset dir="${basedir}/frameworks/libs/automation"> <include name="automation.swc"/> <include name="automation_agent.swc"/>
