Updated Branches:
refs/heads/develop c8f4a8961 -> 972684c00
Disable gjslint during ant build if os=windows since it is not supported on windows
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/972684c0
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/972684c0
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/972684c0
Branch: refs/heads/develop
Commit: 972684c002bcc4b29c33db23acb1fffebf66c1ca
Parents: 6148bd4
Author: Om <bigosmallm@gmail.com>
Authored: Wed Feb 5 12:30:23 2014 -0800
Committer: Om <bigosmallm@gmail.com>
Committed: Wed Feb 5 12:31:18 2014 -0800
----------------------------------------------------------------------
build.xml | 3 +++
1 file changed, 3 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/972684c0/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 21e4886..71eaa72 100644
--- a/build.xml
+++ b/build.xml
@@ -393,6 +393,9 @@
</target>
<target name="frameworks-js" description="Full check of all JavaScript framework files,
using gsjlint and jshint">
+ <condition property="no.lint" value="true">
+ <os family="windows"/>
+ </condition>
<ant dir="${basedir}/frameworks/js">
<property name="locale" value="${locale}"/>
</ant>
|