minor fix

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-02-14 12:23:43 -06:00
parent a64605f615
commit 020a4eb206
1 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import (
"bytes"
"io/ioutil"
"net/http"
"os/user"
"strings"
"go.wit.com/lib/gui/shell"
@ -22,7 +23,8 @@ func Register(gopath string, giturl string) bool {
req.Header.Set("gopath", gopath)
req.Header.Set("giturl", giturl)
req.Header.Set("author", usr.username)
usr, _ := user.Current()
req.Header.Set("author", usr.Username)
hostname := shell.RunCapture("hostname -f")
req.Header.Set("hostname", hostname)