I am curious about why this change is needed. I would think we would want to clean everything out of the folder so we don't accidentally pick up extra files packaging a release.
-Alex On 1/1/19, 3:16 AM, "[email protected]" <[email protected]> wrote: This is an automated email from the ASF dual-hosted git repository. harbs pushed a commit to branch develop in repository https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitbox.apache.org%2Frepos%2Fasf%2Froyale-asjs.git&data=02%7C01%7Caharui%40adobe.com%7Cf61d188d5f954c3d1c6008d66fdaa320%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636819382183366808&sdata=7vsISfScV30eiqVpGRT%2Ba%2Fg78%2FLrdxCaBqxjVZGARio%3D&reserved=0 The following commit(s) were added to refs/heads/develop by this push: new ef95bb4 Changed clean script to only delete the swc files in libs ef95bb4 is described below commit ef95bb4c90f55c91920679c7c4a37842dd1904f9 Author: Harbs <[email protected]> AuthorDate: Tue Jan 1 13:16:38 2019 +0200 Changed clean script to only delete the swc files in libs Every ant build broke the validity of the SDK because it removed the player folder from libs --- frameworks/build.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frameworks/build.xml b/frameworks/build.xml index db45fcc..43c6aa3 100644 --- a/frameworks/build.xml +++ b/frameworks/build.xml @@ -211,7 +211,10 @@ </fileset> </delete> <!-- Delete empty folders --> - <delete dir="${basedir}/libs"/> + <delete dir="${basedir}/libs" failonerror="false"> + <include name="*.swc"/> + </delete> + <!-- <delete dir="${basedir}/libs"/> --> <delete dir="${basedir}/locale"> <exclude name="**/metadata.properties"/> </delete>
