From 20417cf6f85938b72b8fbabb0c52a127fa0c1596 Mon Sep 17 00:00:00 2001 From: Dave Riddle Date: Thu, 4 Apr 2024 12:08:46 -0500 Subject: [PATCH] Update README.md GO112MODULE is not a recognized variable in golang. The correct name is GO111MODULE. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 24659b8f..06a70db0 100644 --- a/README.md +++ b/README.md @@ -90,8 +90,8 @@ To build from source, after you've cloned the repo, run these commands from the top level of the repo: ```bash -GO112MODULE=on go mod download -GO112MODULE=on go build +GO111MODULE=on go mod download +GO111MODULE=on go build ``` Go 1.11 uses some heuristics to determine if Go Modules should be used.