Skip to content

Commit

Permalink
Removed no longer required substring extraction due to composer compl…
Browse files Browse the repository at this point in the history
…iant version tags
  • Loading branch information
theseer committed Dec 1, 2013
1 parent 594bdd3 commit 7a979e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static function getVersion() {
$git = exec('command -p git describe --always --dirty 2>/dev/null', $foo, $rc);
chdir($cwd);
if ($rc === 0) {
self::$version = substr($git, 8);
self::$version = $git;
}
}
}
Expand Down

0 comments on commit 7a979e7

Please sign in to comment.