Looks like I was the only one doing ant clean all on royale-asjs. Pushed the fix.
________________________________ From: Yishay Weiss <[email protected]> Sent: Wednesday, November 8, 2017 9:18:26 AM To: [email protected] Subject: RE: [Royale-ASJS] flexTasks After doing that I ran into a problem where the compiler’s main task wasn’t found. This change seems to fix it though… C:\dev\flexjs\royale-asjs>git diff diff --git a/build.xml b/build.xml index e9da17a77..0a9573b66 100644 --- a/build.xml +++ b/build.xml @@ -1596,7 +1596,7 @@ message="This script will now download and compile lots of files. This can take several minutes. No interaction should be required. Press the enter key to continue." /> <property name="javadoc.zip.uptodate" value="set" /> <!-- javadoc fails on windows? --> - <ant dir="${base.folder.name}/royale-compiler" target="all" /> + <ant dir="${base.folder.name}/royale-compiler" target="main" /> <ant dir="${base.folder.name}/royale-typedefs" /> </target> ________________________________ From: Alex Harui <[email protected]> Sent: Wednesday, November 8, 2017 7:31:52 AM To: [email protected] Subject: Re: [Royale-ASJS] flexTasks Sync all 3 repos, start with royale-compiler, then royale-typedefs, then royale-asjs. I'd recommend running "ant wipe-all" in royale-compiler before running just "ant" (which now builds everything in royale-compiler). And in royale-asjs, run "ant super-clean" before running "ant". HTH, -Alex On 11/7/17, 1:34 PM, "Peter Ent" <[email protected]> wrote: >I sync'd the repo (develop branch) and rebuilt asjs. I'm seeing this >notice: > >Could not load definitions from resource flexTasks.tasks. It could not be >found. > >Wouldn't "flexTasks.tasks" get renamed to "royaleTasks.tasks" ? > >—peter
