From: Bjørn Erik Pedersen Date: Wed, 2 Dec 2015 15:27:08 +0000 (+0100) Subject: Some more error fixes in commands X-Git-Tag: v0.16~553 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c5287e78170474abcf8bbb3aa0fd837de2bafaaa;p=brevno-suite%2Fhugo Some more error fixes in commands See #1502 --- diff --git a/commands/new.go b/commands/new.go index 579d12a5..da2588fb 100644 --- a/commands/new.go +++ b/commands/new.go @@ -176,7 +176,7 @@ func NewTheme(cmd *cobra.Command, args []string) error { jww.INFO.Println("creating theme at", createpath) if x, _ := helpers.Exists(createpath, hugofs.SourceFs); x { - jww.FATAL.Fatalln(createpath, "already exists") + return newUserError(createpath, "already exists") } mkdir(createpath, "layouts", "_default") @@ -196,8 +196,7 @@ func NewTheme(cmd *cobra.Command, args []string) error { err := helpers.WriteToDisk(filepath.Join(createpath, "archetypes", "default.md"), bytes.NewReader(archDefault), hugofs.SourceFs) if err != nil { - - jww.FATAL.Fatalln(err) + return err } mkdir(createpath, "static", "js") @@ -227,7 +226,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. err = helpers.WriteToDisk(filepath.Join(createpath, "LICENSE.md"), bytes.NewReader(by), hugofs.SourceFs) if err != nil { - return nil + return err } createThemeMD(createpath)