-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.xml
More file actions
executable file
·24 lines (19 loc) · 830 Bytes
/
build.xml
File metadata and controls
executable file
·24 lines (19 loc) · 830 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="Enlighter-Gutenberg" default="devcopy" basedir=".">
<!-- ANT-contrib !-->
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
<!-- Plugin Test - DEVELOPMENT ONLY -->
<target name="devcopy">
<!-- Credentials, Host Settings !-->
<loadproperties srcFile=".credentials/account.conf" prefix="dev"/>
<!-- transfer deploy plugin !-->
<echo message="Uploading files [Single Site]"/>
<scp todir="${dev.user}@${dev.host}:${dev.path}" trust="true" port="${dev.port}"
keyfile="${user.home}/${dev.keyfile}">
<fileset dir=".">
<include name="dist/**"/>
<includesfile name="enlighter-gutenberg.php"/>
</fileset>
</scp>
</target>
</project>