markchalloner / git-semver

Git plugin for Semantic Versioning
MIT License
382 stars 43 forks source link

bugfix for parsing version tag having a prefix #21

Closed amimimor closed 7 years ago

amimimor commented 7 years ago

the sed statement that is meant to remove the VERSION_PREFIX is not evaluated before the sed call. Changing into double quotes instructs bash to evaluate that variable on time

markchalloner commented 7 years ago

Thanks for the bugfix!