Skip to content

Commit de5d2b1

Browse files
committed
Building firectl requires at least Go 1.14
Signed-off-by: Volker Simonis <volker.simonis@gmail.com>
1 parent ee76e3c commit de5d2b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ else
3131
endif
3232

3333
build-in-docker:
34-
docker run --rm -v $(CURDIR):/firectl --workdir /firectl golang:1.12 make
34+
docker run --rm -v $(CURDIR):/firectl --workdir /firectl golang:1.14 make
3535

3636
test:
3737
go test -v ./...

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Building
1313

1414
The default Makefile rule executes `go build` and relies on the Go toolchain
1515
installed on your computer.
16-
_We use [go modules](https://github.com/golang/go/wiki/Modules), so you need to
17-
build with Go 1.11 or newer._
16+
_We use [go modules](https://github.com/golang/go/wiki/Modules), and building
17+
requires Go 1.14 or newer._
1818

1919
If you do not have a new-enough Go toolchain installed, you can use `make
2020
build-in-docker`. This rule creates a temporary Docker container which builds

0 commit comments

Comments
 (0)