From: bep Date: Sat, 28 Mar 2015 20:46:02 +0000 (+0100) Subject: Use helpers.FilePathSeparator const X-Git-Tag: v0.14~160 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=beaf5db3;p=brevno-suite%2Fhugo Use helpers.FilePathSeparator const --- diff --git a/commands/new.go b/commands/new.go index 28831bf0..b5066165 100644 --- a/commands/new.go +++ b/commands/new.go @@ -93,7 +93,7 @@ func NewContent(cmd *cobra.Command, args []string) { var kind string // assume the first directory is the section (kind) - if strings.Contains(createpath[1:], string(filepath.Separator)) { + if strings.Contains(createpath[1:], helpers.FilePathSeparator) { kind = helpers.GuessSection(createpath) }