summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-05-28 17:43:10 -0700
committerLouie S <louie@example.com>2023-05-28 17:43:10 -0700
commit8fb96e377ed2fa0c0ab707425b862363a29be859 (patch)
tree77d8d1c4401e9192bcf7e4e428c3952cd77561a7 /src/lib
parent6dd93704a3218a26d10a4268f73c919eea3f22c8 (diff)
Fix copy/paste error; Improve README.md
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/insert2
1 files changed, 1 insertions, 1 deletions
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\");"
}