Fix SC2002

This commit is contained in:
Lukáš Kucharczyk 2022-11-19 00:14:24 +01:00
parent 55388fea39
commit 0255031150
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
1 changed files with 1 additions and 1 deletions

2
tag.sh
View File

@ -77,7 +77,7 @@ log() {
init() {
# DB_NAME
[ -f "$1" ] && fail "Database file \"$1\" already exists. Aborting."
cat "$DB_SCHEMA" | sqlite3 "$1"
sqlite3 "$1" < "$DB_SCHEMA"
log "Empty database file \"$1\" created."
}