fix: move linkmap to public for proper copying

This commit is contained in:
Jacky Zhao 2022-07-31 12:23:01 -07:00
parent eec81e45b4
commit ef8b49f7f4

View File

@ -50,7 +50,7 @@ func write(links []Link, contentIndex ContentIndex, toIndex bool, out string, ro
}
func writeLinkMap(contentIndex *ContentIndex, root string) error {
fp := path.Join(root, "linkmap")
fp := path.Join(root, "public", "linkmap")
file, err := os.OpenFile(fp, os.O_TRUNC|os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
return err