From 4d3bf6967c6836b84cab4767b3b7ffcdb00d5f3e Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Sat, 12 May 2018 16:13:31 -0700 Subject: [PATCH] Fix profile save bug for new profiles --- app/cli/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/cli/main.go b/app/cli/main.go index 4598f8d..611a9ab 100644 --- a/app/cli/main.go +++ b/app/cli/main.go @@ -177,6 +177,7 @@ func main() { case "new-profile": if len(commands) == 3 { err := app.NewProfile(commands[1], commands[2]) + profilefile = commands[2] if err == nil { fmt.Printf("New profile created for %v\n", commands[1]) } else {