projects
/
p5sagit/Distar.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
c341069
)
remove underscores from version using tr rather than eval
Graham Knop [Tue, 14 Apr 2020 13:54:01 +0000 (15:54 +0200)]
lib/Distar.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Distar.pm
b/lib/Distar.pm
index
3ded7cd
..
769d8ad
100644
(file)
--- a/
lib/Distar.pm
+++ b/
lib/Distar.pm
@@
-8,7
+8,7
@@
use File::Spec ();
use File::Basename ();
our $VERSION = '0.003000';
-$VERSION = eval $VERSION;
+$VERSION =~ tr/_//d;
my $MM_VER = eval $ExtUtils::MakeMaker::VERSION;