diff options
Diffstat (limited to '')
-rwxr-xr-x | scripts/mkdb.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/scripts/mkdb.sh b/scripts/mkdb.sh new file mode 100755 index 0000000..9e1a71d --- /dev/null +++ b/scripts/mkdb.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env sh + +# yt - A fully featured command line YouTube client +# +# Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de> +# SPDX-License-Identifier: GPL-3.0-or-later +# +# This file is part of Yt. +# +# You should have received a copy of the License along with this program. +# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. + +root="$(dirname "$0")/.." +db="$root/target/database.sqlite" + +[ -f "$db" ] && rm "$db" +[ -d "$root/target" ] || mkdir "$root/target" + +sqlite3 "$db" <"$root/src/storage/video_database/schema.sql" + +# vim: ft=sh |