Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bin/dump_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# with --csv a csv dump can be created for all tables in the given components. The csv files will be generated in the temporary directory csv_dumps
# and combined into a single TAR archive csv_dumps.

set -e
set -eou pipefail

DEFAULT_APPS=(core)

Expand All @@ -38,6 +38,7 @@ CSV=false
SCHEMA=true
DATA=true
COMBINED=false
APPS=()

for arg in "$@"; do
case "$arg" in
Expand Down
Loading