From 735c7792989a7d1fa76f78b72258678b6306050e Mon Sep 17 00:00:00 2001 From: Karthik Nishanth Date: Sat, 11 Aug 2018 03:07:42 +0530 Subject: [PATCH] Update main.go Zeal accepts the name `docSet.dsidx` instead of `docset.dsidx` --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 64a1e66..fef71f0 100644 --- a/main.go +++ b/main.go @@ -228,7 +228,7 @@ func writeInfoPlist(docsetName, docsetIndexFile, contentsDirectoryPath string) { func initDB(resourcesDirectoryPath string, dbFunc func(*sql.DB)) { - dbPath := filepath.Clean(resourcesDirectoryPath + "/docset.dsidx") + dbPath := filepath.Clean(resourcesDirectoryPath + "/docSet.dsidx") // We don't care, we just want to remove the index os.Remove(dbPath)