From abffb9284740208169cb0d226d9edecc68fb3e45 Mon Sep 17 00:00:00 2001 From: Solomon Jacobs Date: Thu, 27 Nov 2025 19:30:19 +0100 Subject: [PATCH] drop GO111MODULE=on (#17520) This is ignored as of go 1.17, see e.g., for reference https://go.dev/blog/go116-module-changes Signed-off-by: Solomon Jacobs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1743c5a4b8..08355649f3 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ You can use the `go` tool to build and install the `prometheus` and `promtool` binaries into your `GOPATH`: ```bash -GO111MODULE=on go install github.com/prometheus/prometheus/cmd/... +go install github.com/prometheus/prometheus/cmd/... prometheus --config.file=your_config.yml ```