Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongo-php-library
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sinan
mongo-php-library
Commits
f0b09d02
Commit
f0b09d02
authored
May 12, 2015
by
Jeremy Mikola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix trailing semicolons for some Makefile commands
parent
b8ac034e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Makefile
Makefile
+5
-5
No files found.
Makefile
View file @
f0b09d02
...
@@ -6,7 +6,7 @@ PHPUNIT_ARGS=--process-isolation
...
@@ -6,7 +6,7 @@ PHPUNIT_ARGS=--process-isolation
composer
:
composer
:
@
command
-v
composer
>
/dev/null 2>&1
;
\
@
command
-v
composer
>
/dev/null 2>&1
;
\
if
test
$$
?
-eq
0
;
then
\
if
test
$$
?
-eq
0
;
then
\
composer
$(COMPOSER_ARGS)
;
\
composer
$(COMPOSER_ARGS)
;
\
elif
test
-r
composer.phar
;
then
\
elif
test
-r
composer.phar
;
then
\
php composer.phar
$(COMPOSER_ARGS)
;
\
php composer.phar
$(COMPOSER_ARGS)
;
\
else
\
else
\
...
@@ -18,7 +18,7 @@ composer:
...
@@ -18,7 +18,7 @@ composer:
test
:
composer
test
:
composer
@
command
-v
phpunit
>
/dev/null 2>&1
;
\
@
command
-v
phpunit
>
/dev/null 2>&1
;
\
if
test
$$
?
-eq
0
;
then
\
if
test
$$
?
-eq
0
;
then
\
phpunit
$(PHPUNIT_ARGS)
;
\
phpunit
$(PHPUNIT_ARGS)
;
\
elif
test
-r
phpunit.phar
;
then
\
elif
test
-r
phpunit.phar
;
then
\
php phpunit.phar
$(PHPUNIT_ARGS)
;
\
php phpunit.phar
$(PHPUNIT_ARGS)
;
\
else
\
else
\
...
@@ -30,9 +30,9 @@ test: composer
...
@@ -30,9 +30,9 @@ test: composer
apigen
:
apigen
:
@
command
-v
apigen
>
/dev/null 2>&1
;
\
@
command
-v
apigen
>
/dev/null 2>&1
;
\
if
test
$$
?
-eq
0
;
then
\
if
test
$$
?
-eq
0
;
then
\
apigen generate
apigen generate
;
\
elif
test
-r
apigen.phar
;
then
\
elif
test
-r
apigen.phar
;
then
\
php apigen.phar generate
\
php apigen.phar generate
;
\
else
\
else
\
echo
"Cannot find apigen :("
;
\
echo
"Cannot find apigen :("
;
\
echo
"Aborting."
;
\
echo
"Aborting."
;
\
...
@@ -42,7 +42,7 @@ apigen:
...
@@ -42,7 +42,7 @@ apigen:
mkdocs
:
mkdocs
:
@
command
-v
mkdocs
>
/dev/null 2>&1
;
\
@
command
-v
mkdocs
>
/dev/null 2>&1
;
\
if
test
$$
?
-eq
0
;
then
\
if
test
$$
?
-eq
0
;
then
\
mkdocs build
--clean
\
mkdocs build
--clean
;
\
else
\
else
\
echo
"Cannot find mkdocs :("
;
\
echo
"Cannot find mkdocs :("
;
\
echo
"Aborting."
;
\
echo
"Aborting."
;
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment