Skip to content

Commit f0b09d0

Browse files
committed
Fix trailing semicolons for some Makefile commands
1 parent b8ac034 commit f0b09d0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PHPUNIT_ARGS=--process-isolation
66
composer:
77
@command -v composer >/dev/null 2>&1; \
88
if test $$? -eq 0; then \
9-
composer $(COMPOSER_ARGS) ;\
9+
composer $(COMPOSER_ARGS); \
1010
elif test -r composer.phar; then \
1111
php composer.phar $(COMPOSER_ARGS); \
1212
else \
@@ -18,7 +18,7 @@ composer:
1818
test: composer
1919
@command -v phpunit >/dev/null 2>&1; \
2020
if test $$? -eq 0; then \
21-
phpunit $(PHPUNIT_ARGS) ;\
21+
phpunit $(PHPUNIT_ARGS); \
2222
elif test -r phpunit.phar; then \
2323
php phpunit.phar $(PHPUNIT_ARGS); \
2424
else \
@@ -30,9 +30,9 @@ test: composer
3030
apigen:
3131
@command -v apigen >/dev/null 2>&1; \
3232
if test $$? -eq 0; then \
33-
apigen generate
33+
apigen generate; \
3434
elif test -r apigen.phar; then \
35-
php apigen.phar generate \
35+
php apigen.phar generate; \
3636
else \
3737
echo "Cannot find apigen :("; \
3838
echo "Aborting."; \
@@ -42,7 +42,7 @@ apigen:
4242
mkdocs:
4343
@command -v mkdocs >/dev/null 2>&1; \
4444
if test $$? -eq 0; then \
45-
mkdocs build --clean \
45+
mkdocs build --clean; \
4646
else \
4747
echo "Cannot find mkdocs :("; \
4848
echo "Aborting."; \

0 commit comments

Comments
 (0)