fork of anirudh.fi/vite that uses chroma for hl
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix copying non .md files

+4 -1
+4 -1
commands/build.go
··· 83 83 } 84 84 } else { 85 85 src := filepath.Join(PAGES, f) 86 - util.CopyFile(src, BUILD) 86 + dst := filepath.Join(BUILD, f) 87 + if err := util.CopyFile(src, dst); err != nil { 88 + return err 89 + } 87 90 } 88 91 } 89 92 return nil