diff options
author | Jakob Unterwurzacher | 2021-07-29 11:21:16 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-07-29 12:36:53 +0200 |
commit | 51bddd826ef29e5807b581dd037110e4502127cf (patch) | |
tree | 08a558cc0d3839cf41c7b193408d80cdb73570ee /go.mod | |
parent | 6f0ed4b8c400cd53ccb42eb83c52ead483646b78 (diff) |
go mod: set version to 1.16 & drop explicit "-mod=vendor" from ci
This makes "go build" automatically use the vendor
directory, if present.
See https://golang.org/doc/modules/gomod-ref#go for details.
Up to now, we ignored the vendor dir completely!
Fixes https://github.com/rfjakob/gocryptfs/issues/581
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ module github.com/rfjakob/gocryptfs -go 1.13 +go 1.16 require ( github.com/hanwen/go-fuse/v2 v2.1.1-0.20210611132105-24a1dfe6b4f8 |