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

build.xml - github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 992e2b497de806e574825822a47441c067327a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<project name="owncloud-firstrunwizard" 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>