Skip to content

Commit

Permalink
minor fixes and testing version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Jan 16, 2016
1 parent 43f4f71 commit 2739e53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/base/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public function createControllerByID($id)
/// skip start for init goal
if ($this->_first) {
$this->_first = false;
static $skips = ['init' => 1, 'clone' => 1, 'version' =>1];
static $skips = ['init' => 1, 'clone' => 1, 'version' => 1];
if (!$skips[$id]) {
$this->runRequest('start');
}
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/BumpController.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ public function actionCommit($version = null)
{
$version = $version ?: $this->version ?: $this->takeGoal('version')->version;
$message = "version bump to $version";
$this->passthru('git', ['commit', '-am', $message]);
return $this->passthru('git', ['commit', '-am', $message]);
}
}

0 comments on commit 2739e53

Please sign in to comment.