From a23f707268b9f6a3613356ab426155969bb2320b Mon Sep 17 00:00:00 2001 From: Jack Brown Date: Mon, 26 Aug 2019 11:07:07 -0700 Subject: [PATCH] Update build docs to clarify usage of `.go` extension (#2726) Issue #2716 was caused by a misunderstanding regarding the filename to use when creating a custom build from source. These changes aim to make the instructions more explicit. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9cd0f590..bcd8c406 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ There is no need to modify the Caddy code to build it with plugins. We will crea 1. Set the transitional environment variable for Go modules: `export GO111MODULE=on` -2. Create a new folder anywhere and within create a Go file (extension `.go`) with the contents below, adjusting to import the plugins you want to include: +2. Create a new folder anywhere and within create a Go file (with an extension of `.go`, such as `main.go`) with the contents below, adjusting to import the plugins you want to include: ```go package main