Use helpers.FilePathSeparator const
authorbep <bjorn.erik.pedersen@gmail.com>
Sat, 28 Mar 2015 20:46:02 +0000 (21:46 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Sat, 28 Mar 2015 20:46:06 +0000 (21:46 +0100)
commands/new.go

index 28831bf07d50dbf95aad3db6e03b9c6d0403d02e..b5066165b22aff3219a70d43ec31f356d3b31223 100644 (file)
@@ -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)
        }