From 4e3779da1b6fdac8991b6beb986f6eebdedff86c Mon Sep 17 00:00:00 2001 From: Patrick Crosby Date: Fri, 5 Feb 2016 14:41:03 -0600 Subject: [PATCH] Comment about configurePath order --- go/keybase/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/go/keybase/main.go b/go/keybase/main.go index 7174ca4dd996..5e60982b7faa 100644 --- a/go/keybase/main.go +++ b/go/keybase/main.go @@ -115,6 +115,9 @@ func mainInner(g *libkb.GlobalContext) error { return err } + // This sends the client's PATH to the service so the service can update + // its PATH if necessary. This is called after FixVersionClash(), which + // happens above in configureProcesses(). if err = configurePath(g, cl); err != nil { return err }