fix line too long, update gitignore

This commit is contained in:
connorc@orbitnode.net 2023-03-19 17:45:01 -06:00
parent 6b2955e48a
commit dfbe572c9e
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -54,3 +54,4 @@ build-iPhoneSimulator/
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
# .rubocop-https?--*
install.sh

View File

@ -33,7 +33,8 @@ class MysqlDatabaseBackup
@logger.info("Backup file path: #{backup_file}")
@logger.info("MySQL Info: #{@host} #{@username} #{@password} #{backup_file}")
`mysqldump --host=#{@host} --user=#{@username} --password='#{@password}' --databases #{database_name} > #{backup_file}`
`mysqldump --host=#{@host} --user=#{@username} --password='#{@password}'
--databases #{database_name} > #{backup_file}`
delete_old_backups