Skip to content

Commit

Permalink
Fixed versioning path
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Jul 22, 2016
1 parent b0dc5b4 commit 2e6e0e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/Console/Commands/Versioning.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function fire()
{
// Path to the file containing your version
// This will be overwritten everything you commit a message
$versionFile = app_path().'/config/version.php';
$versionFile = 'config/version.php';

// The git's output
// get the argument passed in the git command
Expand Down
6 changes: 3 additions & 3 deletions config/version.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
return array (
'app_version' => 'v3.0',
'hash_version' => 'v3.0-ebc74a65',
);
'app_version' => 'v3.0-12',
'hash_version' => 'v3.0-12-gb0dc5b4',
);

0 comments on commit 2e6e0e8

Please sign in to comment.