From f648fd9ae470458ba18f4487bc5ecca9da4edeeb Mon Sep 17 00:00:00 2001 From: nicksherron Date: Mon, 10 Feb 2020 04:34:36 -0500 Subject: [PATCH] cmd/root: fix checkBhEnv message --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 8fd3b97..45bf999 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -123,7 +123,7 @@ func checkBhEnv() { msg := fmt.Sprintf(` WARNING: BH_URL is to https://bashhub.com on this machine If you will be running bashhub-client locally be sure to add -export BH_URL=http://%v to your .bashrc or .zshrc`, addr) +export BH_URL=%v to your .bashrc or .zshrc`, addr) fmt.Println(msg, "\n") } }