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

yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new c20b332  Fixes validation issues on windows
     new abd4779  Merge branch 'develop' of 
https://github.com/apache/royale-asjs into develop
c20b332 is described below

commit c20b3320e8d6b6e45260e634dd48b823b618f8ff
Author: Yishay Weiss <[email protected]>
AuthorDate: Thu Jul 22 14:25:45 2021 +0300

    Fixes validation issues on windows
---
 releasesteps.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/releasesteps.xml b/releasesteps.xml
index afdcd8e..fda927a 100644
--- a/releasesteps.xml
+++ b/releasesteps.xml
@@ -187,12 +187,19 @@
         <mkdir dir="${artifactfolder}/artifacts" />
         <unzip src="${artifactfolder}/archive.zip" 
dest="${artifactfolder}/artifacts"/>
     </target>
+       <target name="fixsources" if="fixfolder">
+           <fixcrlf srcdir="${fixfolder}" eol="dos" fixlast="false">
+                   <include name="**/*.sass"/>
+           </fixcrlf>   
+    </target>
     <target name="build-source" >
         <mkdir dir="${artifactfolder}/sources" />
         <unzip 
src="${artifactfolder}/artifacts/archive/target/local-release-dir/org/apache/royale/framework/royale-framework-parent/${release.version}/royale-framework-parent-${release.version}-source-release.zip"
 dest="${artifactfolder}/sources" >
             <cutdirsmapper dirs="1" />
         </unzip>
-        
+        <antcall target="fixsources">
+               <param name="fixfolder" value="${artifactfolder}/sources"/>
+       </antcall>
         <!-- build these modules -->
         <exec executable="${mvn}" dir="${artifactfolder}/sources" 
failonerror="true" >
             <arg value="-X" />

Reply via email to