Skip to content
Snippets Groups Projects
Unverified Commit 44e6f98c authored by Odin Kroeger's avatar Odin Kroeger
Browse files

build: fixed syntax errors

parent 984bb2a5
No related branches found
No related tags found
No related merge requests found
...@@ -14,10 +14,9 @@ PATHCHK = pathchk ...@@ -14,10 +14,9 @@ PATHCHK = pathchk
PHPCSFIXER = php-cs-fixer PHPCSFIXER = php-cs-fixer
PHPCSFIXERARGS = --rules=@PER-CS1.0 PHPCSFIXERARGS = --rules=@PER-CS1.0
PHPSTAN = phpstan PHPSTAN = phpstan
VPATH = .
SHELL = /bin/sh SHELL = /bin/sh
TAR = pax -ws '/^/$(distname)\//' -x ustar TAR = pax -ws '/^/$(distname)\//' -x ustar
UNTAR = tar -x UNTAR = tar x
UNZIP = gzcat UNZIP = gzcat
WP = wp WP = wp
ZIP = gzip ZIP = gzip
...@@ -160,5 +159,5 @@ clean: ...@@ -160,5 +159,5 @@ clean:
# #
lint: lint:
$(PHPSTAN) $(PHPSTANARGS) analyze . || [ $? -eq 127 ] $(PHPSTAN) $(PHPSTANARGS) analyze . || [ $$? -eq 127 ]
$(PHPCSFIXER) fix $(PHPCSFIXERARGS) . || [ $? -eq 127 ] $(PHPCSFIXER) fix $(PHPCSFIXERARGS) . || [ $$? -eq 127 ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment