diff --git a/src/content/blog/golang-debugging.md b/src/content/blog/golang-debugging.md index cb86db95..050187f5 100644 --- a/src/content/blog/golang-debugging.md +++ b/src/content/blog/golang-debugging.md @@ -41,7 +41,7 @@ Once you've have your IDE working, you can start debugging. * Change its name to the command you want to work on, like `ddev list` * Change the "Program Arguments" to the arguments to `ddev`, like `list` * Change the "Working Directory" to a valid DDEV project - * (optional) If you need to override the version of the built `ddev` you can add `-ldflags " -extldflags -static -X 'github.com/ddev/ddev/pkg/versionconstants.DdevVersion=v1.23.5-goland'"` - version `v1.23.5-goland` could be whatever you need. + * (optional) If you need to override the version of the built `ddev` you can add `-ldflags " -extldflags -static -X 'github.com/ddev/ddev/pkg/versionconstants.DdevVersion=v1.23.5-goland'"` to "Go tool arguments" - version `v1.23.5-goland` could be whatever you need. * Set a breakpoint by clicking to the left of a line, for example in `cmd/ddev/cmd/list.go` * Click the `Run` or `Debug` button on the top bar.