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

Makefile - github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31a696d617bc2c45db2d6123a828d4c249076669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
box:
	curl -L https://github.com/box-project/box2/releases/download/2.7.4/box-2.7.4.phar -o box
	chmod +x box

updater.phar: box updater.php lib/*.php buildVersionFile.php
	php buildVersionFile.php
	./box build -c box.json
	chmod +x updater.phar
	rm lib/Version.php

clean:
	rm updater.phar

test/vendor:
	cd tests && composer require behat/behat:3.0.*

test: updater.phar test/vendor
	cd tests && vendor/behat/behat/bin/behat

check-same-code-base:
	cd tests && php checkSameCodeBase.php