about summary refs log tree commit diff stats
path: root/scripts/mkdb.sh
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-13 21:18:16 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-13 21:19:08 +0200
commit394d4f7d105dadd7b516f198b0d6a9dda2d3f1a5 (patch)
tree2270d26a3888651ac419debde0dc51780ddeb494 /scripts/mkdb.sh
parentbuild(flake): Switch to `nixpkgs-unstable-small` (diff)
downloadyt-394d4f7d105dadd7b516f198b0d6a9dda2d3f1a5.zip
refactor(yt): Move to `crates/yt`
Having one crate outside the `crates` directory is just weird.
Diffstat (limited to '')
-rwxr-xr-xscripts/mkdb.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mkdb.sh b/scripts/mkdb.sh
index a6b453c..f0c7740 100755
--- a/scripts/mkdb.sh
+++ b/scripts/mkdb.sh
@@ -16,7 +16,7 @@ db="$root/target/database.sqlx"
 [ -f "$db" ] && rm "$db"
 [ -d "$root/target" ] || mkdir "$root/target"
 
-fd . "$root/yt/src/storage/migrate/sql" | while read -r sql_file; do
+fd . "$root/crates/yt/src/storage/migrate/sql" | while read -r sql_file; do
     echo "Applying sql migration file: $(basename "$sql_file").."
     {
         # NOTE(@bpeetz): The wrapping in a transaction is needed to simulate the rust code. <2025-05-07>