summaryrefslogtreecommitdiff
path: root/util/dbdump.pl
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2019-07-22 21:41:16 +0200
committerYorhel <git@yorhel.nl>2019-07-22 21:41:16 +0200
commit0f3cfeb85caec6424bcbea47142eefbf8011636b (patch)
tree576c15f089dbe6b92692394cf060b2801da1e797 /util/dbdump.pl
parenta9d06ffdab8c8528d8930617462ea931fd4d303b (diff)
dbdump.pl: Actually include import.sql in the db dumps
Diffstat (limited to 'util/dbdump.pl')
-rwxr-xr-xutil/dbdump.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/dbdump.pl b/util/dbdump.pl
index 2c386f19..c369f375 100755
--- a/util/dbdump.pl
+++ b/util/dbdump.pl
@@ -207,7 +207,7 @@ sub export_db {
export_import_script "${dest}_dir/import.sql";
print "# Compressing\n";
- `tar -cf "$dest" -I 'zstd -7' --sort=name -C "${dest}_dir" @static TIMESTAMP db`
+ `tar -cf "$dest" -I 'zstd -7' --sort=name -C "${dest}_dir" @static import.sql TIMESTAMP db`
}