From bb324d530a3bb2b36e52c7f5898d22fd3f1897e3 Mon Sep 17 00:00:00 2001 From: James Dyson Date: Wed, 15 Oct 2014 15:30:00 +1100 Subject: [PATCH] Fixed small typo Noticed it when using bee. --- new.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new.go b/new.go index 50c8f1d..81fb02a 100644 --- a/new.go +++ b/new.go @@ -92,7 +92,7 @@ func createApp(cmd *Command, args []string) int { apppath := path.Join(curpath, args[0]) if _, err := os.Stat(apppath); os.IsNotExist(err) == false { - fmt.Printf("[ERRO] Path(%s) has alreay existed\n", apppath) + fmt.Printf("[ERRO] Path (%s) already exists\n", apppath) os.Exit(2) }