authorgravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-20 13:35:05 -08:00
committergravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-20 13:35:05 -08:00
logc5ef44d0423dedd88992dae7acc152fe6f3de7b1
tree520350444d6be2b3fc37b69686c9370dd12a8437
parent497f93745c8363ec6d48c5fb9645762bebd93cfc

add missing git_version_type


1 files changed, 6 insertions(+), 0 deletions(-)

src/util/dep_type.zig+6
...@@ -5,3 +5,9 @@ pub const DepType = enum {...@@ -5,3 +5,9 @@ pub const DepType = enum {
5 git, // https://git-scm.com/5 git, // https://git-scm.com/
6 hg, // https://www.mercurial-scm.org/6 hg, // https://www.mercurial-scm.org/
7};7};
8
9pub const GitVersionType = enum {
10 branch,
11 tag,
12 commit,
13};