Skip to content

Commit

Permalink
fixed production dump
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinDo committed Apr 16, 2024
1 parent d20768d commit 0366f66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/backups/database_dumper/dump_database.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ then
mkdir -p $dump_path
dump_name=production-dump-$DATE.sql

mysqldump --quick -P$DB_PORT -h$DB_HOST -u$DB_ADMIN -p$DB_ADMIN_PW --no-tablespaces -r$dump_path/$dump_name $DB_NAME
mysqldump --quick -h $DB_HOST -P $DB_PORT -u$DB_ADMIN -p$DB_ADMIN_PW --no-tablespaces -r$dump_path/$dump_name $DB_NAME
gzip -f $dump_path/$dump_name
fi

Expand Down

0 comments on commit 0366f66

Please sign in to comment.