Skip to content
This repository has been archived by the owner on Mar 18, 2023. It is now read-only.

Commit

Permalink
Fixed concatenation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JapSeyz committed Aug 25, 2017
1 parent 7289645 commit ac4eec4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Command/MigrateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __invoke(Route $route, AdapterInterface $console)
\exec(
$this->shellPath.' migrate '.
'-e '.$this->env.' '.
'-c '.$this->configPath.' '.
'-c '.$this->configPath.' ',
$this->output,
$this->failure
);
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ResetCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __invoke(Route $route, AdapterInterface $console)
\exec(
$this->shellPath.' rollback -t 0 -f '.
'-e '.$this->env.' '.
'-c '.$this->configPath.' '.
'-c '.$this->configPath.' ',
$this->output,
$this->failure
);
Expand Down
2 changes: 1 addition & 1 deletion src/Command/RollbackCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __invoke(Route $route, AdapterInterface $console)
\exec(
$this->shellPath.' rollback '.
'-e '.$this->env.' '.
'-c '.$this->configPath.' '.
'-c '.$this->configPath.' ',
$this->output,
$this->failure
);
Expand Down

0 comments on commit ac4eec4

Please sign in to comment.