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

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

commit f0903ad663dfa245126bc3290b1cd09691374682
Author: Alex Harui <aha...@apache.org>
AuthorDate: Thu Jan 25 09:53:28 2018 -0800

    ant script so I don't have to remember the options
---
 build.xml | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/build.xml b/build.xml
new file mode 100644
index 0000000..31109d8
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" ?>
+
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+
+<project name="royale-docs" default="main" basedir=".">
+
+    <property file="${basedir}/../env.properties"/>
+    <property environment="env"/>
+    <property file="${basedir}/../local.properties"/>
+    <property file="${basedir}/../build.properties"/>
+    
+    <target name="main" description="Build everything">
+        <exec executable="jekyll" failonerror="true">
+            <arg value="build" />
+            <arg value="--config" />
+            <arg value="local_config.yml" />
+        </exec>
+    </target>
+
+</project>

-- 
To stop receiving notification emails like this one, please contact
aha...@apache.org.

Reply via email to