-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitpush.xml
More file actions
35 lines (26 loc) · 1017 Bytes
/
gitpush.xml
File metadata and controls
35 lines (26 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!--
Turnstone Biologics Confidential
2018 Turnstone Biologics, Inc.
All Rights Reserved.
This file is subject to the terms and conditions defined in
file 'license.txt', which is part of this source code package.
Contributors :
Turnstone Biologics - General Release
-->
<project name="gitpush.ant" default="all" basedir=".">
<target name="all" depends="gitpush"/>
<property environment="os"/>
<target name="gitpush">
<exec executable="dos2unix" logError="true" failonerror="false" failifexecutionfails="false">
<arg value="gitpush.sh"/>
</exec>
<exec executable="chmod" logError="true" failonerror="false" failifexecutionfails="false">
<arg value="+x"/>
<arg value="gitpush.sh"/>
</exec>
<exec executable="sh" logError="true" failonerror="false" failifexecutionfails="false">
<arg value="--login"/>
<arg value="./gitpush.sh"/>
</exec>
</target>
</project>