diff options
Diffstat (limited to 'argvAutoshell.go')
| -rw-r--r-- | argvAutoshell.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/argvAutoshell.go b/argvAutoshell.go index 9648908..94f4793 100644 --- a/argvAutoshell.go +++ b/argvAutoshell.go @@ -3,6 +3,7 @@ package main import ( "fmt" "os" + "os/user" ) /* @@ -20,7 +21,8 @@ func (args) doBashAuto() { argv.doBashHelp() switch argv.BashAuto[0] { case "checkout": - fmt.Println("user devel master") + usr, _ := user.Current() + fmt.Println("user devel master " + usr.Username) case "commit": fmt.Println("--all") case "config": |
