Fix section name guessing on Windows

This commit is contained in:
Nuno Antunes 2015-03-28 16:22:34 +00:00 committed by bep
parent 15463d3d45
commit 61a02c4df8

View 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:], "/") {
if strings.Contains(createpath[1:], string(filepath.Separator)) {
kind = helpers.GuessSection(createpath)
}