diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/lib/insert | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ This file will build the docset. ### `src/icon.png` -If you want to associate an icon with the docset, it should be saved to `src/icon.png`. +If you want to associate an icon with the docset, it should be saved to `src/icon.png`. Make sure to uncomment the corresponding line in `Makefile` to include the icon in the docset. ### `src/index.sh` diff --git a/src/lib/insert b/src/lib/insert index baa13bd..31c1b4c 100644 --- a/src/lib/insert +++ b/src/lib/insert @@ -4,5 +4,5 @@ insert() { TYPE="$3" PAGE_PATH="$4" - sqlite3 "$DB_PATH" "INSERT INTO searchIndex(name, type, path) VALUES (\"$NAME\",\"$TYPE\",\"libc/$PAGE_PATH\");" + sqlite3 "$DB_PATH" "INSERT INTO searchIndex(name, type, path) VALUES (\"$NAME\",\"$TYPE\",\"$PAGE_PATH\");" } |