Skip to content

Commit

Permalink
Merge pull request #13 from humanmade/hotfix-syntax-error
Browse files Browse the repository at this point in the history
Remove trailing comma on function call.
  • Loading branch information
joehoyle authored Apr 18, 2019
2 parents 83ae145 + b178d49 commit 7e600df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/Composer/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ protected function shell( InputInterface $input, OutputInterface $output ) {
'cd %s; VOLUME=%s COMPOSE_PROJECT_NAME=%s docker-compose exec php /bin/bash',
'vendor/humanmade/local-server/docker',
getcwd(),
basename( getcwd() ),
basename( getcwd() )
), $return_val );

return $return_val;
Expand Down

0 comments on commit 7e600df

Please sign in to comment.