diff options
author | Michael Muré <batolettre@gmail.com> | 2018-12-23 23:03:19 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-12-23 23:03:19 +0100 |
commit | 8a6a8055d723e523d9943244b042c778d75b02cc (patch) | |
tree | 927d1a713839778371b33800b86f9258a1ed9845 /git-bug.go | |
parent | 45b82de0be03ba0acbd82738dff85611b1d3c5a7 (diff) | |
download | git-bug-8a6a8055d723e523d9943244b042c778d75b02cc.tar.gz |
add a check for the minimal go version (1.8)
Diffstat (limited to 'git-bug.go')
-rw-r--r-- | git-bug.go | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -5,7 +5,12 @@ package main -import "github.com/MichaelMure/git-bug/commands" +import ( + "github.com/MichaelMure/git-bug/commands" + + // minimal go version is 1.8 + _ "github.com/theckman/goconstraint/go1.8/gte" +) func main() { commands.Execute() |