mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 11:44:49 +08:00
FIX: Update database_restorer to avoid shell use (#12731)
Follow-up to 0ec5fd5262
This commit is contained in:
parent
965843f3e5
commit
3436fef5e3
|
@ -136,7 +136,7 @@ module BackupRestore
|
|||
"SKIP_OPTIMIZE_ICONS" => "1",
|
||||
"DISABLE_TRANSLATION_OVERRIDES" => "1"
|
||||
},
|
||||
"rake db:migrate",
|
||||
"rake", "db:migrate",
|
||||
failure_message: "Failed to migrate database.",
|
||||
chdir: Rails.root
|
||||
)
|
||||
|
|
|
@ -35,11 +35,11 @@ describe BackupRestore::DatabaseRestorer do
|
|||
end
|
||||
|
||||
def expect_db_migrate
|
||||
Discourse::Utils.expects(:execute_command).with do |env, command, options|
|
||||
Discourse::Utils.expects(:execute_command).with do |env, *command, **options|
|
||||
env["SKIP_POST_DEPLOYMENT_MIGRATIONS"] == "0" &&
|
||||
env["SKIP_OPTIMIZE_ICONS"] == "1" &&
|
||||
env["DISABLE_TRANSLATION_OVERRIDES"] == "1" &&
|
||||
command == "rake db:migrate" &&
|
||||
command == ["rake", "db:migrate"] &&
|
||||
options[:chdir] == Rails.root
|
||||
end.once
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user