Cleanup makefile (#1478)

Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
This commit is contained in:
Raimund Schlüßler 2021-04-04 18:53:13 +02:00 committed by GitHub
parent ed859ceb3c
commit dffae33515
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 9 deletions

View File

@ -31,14 +31,6 @@ build_directory=$(CURDIR)/build
appstore_build_directory=$(CURDIR)/build/appstore/$(app_name)
appstore_artifact_directory=$(CURDIR)/build/artifacts/appstore
appstore_package_name=$(appstore_artifact_directory)/$(app_name)
npm=$(shell which npm 2> /dev/null)
gcp=$(shell which gcp 2> /dev/null)
ifeq (, $(gcp))
copy_command=cp
else
copy_command=gcp
endif
# code signing
# assumes the following:
@ -189,7 +181,7 @@ endif
# Command for running VUE tests
.PHONY: test
test:
$(npm) run test
npm run test
test-php:
phpunit -c phpunit.xml