Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.xml - github.com/nextcloud/templateeditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2511643e47049a3d76d0fe197f5465300bf4e016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<project name="owncloud-enterprise" basedir="." default="test">

	<!-- test - Tests if the code syntax is correct and executes phpunit tests -->
	<target name="test">
		<apply executable="php" failonerror="true">
			<arg value="-l" />
			<fileset dir=".">
				<include name="**/*.php" />
				<exclude name="**/l10n/**" />
			</fileset>
		</apply>

	</target>

</project>