Skip to content

Commit

Permalink
Merge pull request #1242 from golemfactory/git_tag_pre_rel_pattern
Browse files Browse the repository at this point in the history
Fix git_tag() to properly match pre-rel tags
  • Loading branch information
tworec committed Apr 16, 2021
2 parents 4645bf3 + 92c1a18 commit 29b7f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/compile-time-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub fn git_tag() -> &'static str {
"--tag",
"--abbrev=0",
"--match=v[0-9]*",
"--match=pre-rel-[0-9]*"
"--match=pre-rel-v[0-9]*"
],
cargo_prefix = ""
)
Expand Down

0 comments on commit 29b7f85

Please sign in to comment.