Fixed versioning path

This commit is contained in:
snipe 2016-07-21 21:30:49 -07:00
parent b0dc5b4183
commit 2e6e0e8911
2 changed files with 4 additions and 4 deletions

View file

@ -42,7 +42,7 @@ class Versioning extends Command
{
// 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

View file

@ -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',
);