Skip to content
This repository has been archived by the owner on Jul 24, 2021. It is now read-only.

Commit

Permalink
fix: fix git version_hash helper
Browse files Browse the repository at this point in the history
  • Loading branch information
Lane Seppala authored and sungo committed Mar 27, 2018
1 parent 2d7bf7e commit 5978849
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Conch/lib/Conch/Plugin/GitVersion.pm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ sub register ( $self, $app, $conf ) {
chomp $git_hash;

$app->helper(
version_tag => sub { $git_tag },
version_tag => sub { $git_tag }
);
$app->helper(
version_hash => sub { $git_hash }
);
}
Expand Down

0 comments on commit 5978849

Please sign in to comment.