Create minimal default.md in archetype file
authorAndy Williams <andrew_williams@comcast.com>
Wed, 14 Oct 2015 18:12:59 +0000 (14:12 -0400)
committerspf13 <steve.francia@gmail.com>
Thu, 15 Oct 2015 20:36:13 +0000 (16:36 -0400)
fixes #315
To fix the cast error, create a minimal default.md in the archetype
folder.

commands/new.go

index 9d1691592865fb333eaa54fbeac42608876c1c66..ed0b98499dba0a5047a5ff3b9dfbea5a14e0a6a4 100644 (file)
@@ -163,7 +163,14 @@ func NewTheme(cmd *cobra.Command, args []string) {
        touchFile(createpath, "layouts", "partials", "footer.html")
 
        mkdir(createpath, "archetypes")
-       touchFile(createpath, "archetypes", "default.md")
+
+       archDefault := []byte("+++\n+++\n")
+
+       err := helpers.WriteToDisk(filepath.Join(createpath, "archetypes", "default.md"), bytes.NewReader(archDefault), hugofs.SourceFs)
+       if err != nil {
+
+               jww.FATAL.Fatalln(err)
+       }
 
        mkdir(createpath, "static", "js")
        mkdir(createpath, "static", "css")
@@ -190,7 +197,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 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)
+       err = helpers.WriteToDisk(filepath.Join(createpath, "LICENSE.md"), bytes.NewReader(by), hugofs.SourceFs)
        if err != nil {
                jww.FATAL.Fatalln(err)
        }