diff options
author | Louie S <louie@example.com> | 2023-05-28 17:52:08 -0700 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-05-28 17:52:08 -0700 |
commit | ae168236bbc1d5be63f607e872216a1b6d6ac3e5 (patch) | |
tree | 4e8af8141d916c86482e2cd042338815ce34a1ef /src/lib | |
parent | 6dd93704a3218a26d10a4268f73c919eea3f22c8 (diff) |
GNU Automake (now with more indexing)
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/insert | 2 |
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\");" } |