about summary refs log tree commit diff stats
path: root/scripts
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-14 18:08:22 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-14 18:08:22 +0200
commitf83a50302b8d41f834f1e279a63f1c123a09a139 (patch)
tree725230c6f9cd3c199069c49a901a54c4beec76ee /scripts
parentstyle(treewide): Format (diff)
downloadyt-f83a50302b8d41f834f1e279a63f1c123a09a139.tar.gz
yt-f83a50302b8d41f834f1e279a63f1c123a09a139.zip
build(scripts/mkdb.sh): Update to use new sql schema path
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mkdb.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mkdb.sh b/scripts/mkdb.sh
index 9e1a71d..9ce5dd8 100755
--- a/scripts/mkdb.sh
+++ b/scripts/mkdb.sh
@@ -16,6 +16,6 @@ db="$root/target/database.sqlite"
 [ -f "$db" ] && rm "$db"
 [ -d "$root/target" ] || mkdir "$root/target"
 
-sqlite3 "$db" <"$root/src/storage/video_database/schema.sql"
+sqlite3 "$db" <"$root/yt/src/storage/video_database/schema.sql"
 
 # vim: ft=sh