mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 12:11:16 -05:00
14 lines
309 B
Ruby
14 lines
309 B
Ruby
module BackupRestore
|
|
module Utils
|
|
def execute_command(command, failure_message = "")
|
|
output = `#{command} 2>&1`
|
|
|
|
if !$?.success?
|
|
failure_message = "#{failure_message}\n" if !failure_message.blank?
|
|
raise "#{failure_message}#{output}"
|
|
end
|
|
|
|
output
|
|
end
|
|
end
|
|
end
|