command: Fix hugo new for multiple architectures
authorChase Adams <realchaseadams@gmail.com>
Sun, 9 Oct 2016 08:59:07 +0000 (01:59 -0700)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 9 Oct 2016 08:59:07 +0000 (10:59 +0200)
commit3616fb629b33d8f2ac91eea77932e24076e31d1b
treea36ab91cffd4523b2fd391607706fd180ee97da3
parentcf5d2e2753a29dc3c4adc6a0444fa7cc177c0691
command: Fix hugo new for multiple architectures

Changes `%q` to `%s`. `%q` was safely escaping the `\` in windows so that it was printing `\\`. Uses `filepath.Join` for example filepath so that the output is OS specific and since this required splitting up the multiline string, it's refactored into a separate function..

Fixes #2401
commands/new.go