diff options
| author | Jeff Carr <[email protected]> | 2025-08-31 12:24:56 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-31 12:24:56 -0500 |
| commit | 4fcc1e0349c8a0f13023639e17561bbcb050bffb (patch) | |
| tree | 09ccabdc8e32b528fd21efdc4ed1607e8418fa5b /init.go | |
| parent | a1bab321212258cca84a14832f3ce7fe46bc5f43 (diff) | |
fixes for Append()
Diffstat (limited to 'init.go')
| -rw-r--r-- | init.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -9,7 +9,6 @@ import ( "time" "go.wit.com/lib/gui/shell" - "go.wit.com/lib/hostname" "go.wit.com/lib/protobuf/gitpb" "go.wit.com/log" ) @@ -171,7 +170,7 @@ func (f *Forge) InitMachine() { usr, _ := user.Current() f.Config.Username = usr.Username } - f.hostname, _ = hostname.Get() + f.hostname, _ = os.Hostname() // log.Info(hostname, err) } |
