mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 11:44:49 +08:00
REFACTOR: Simplify git command execution
This commit is contained in:
parent
af58dbeb24
commit
f523dcf9df
|
@ -801,17 +801,11 @@ module Discourse
|
|||
end
|
||||
|
||||
def self.try_git(git_cmd, default_value)
|
||||
version_value = false
|
||||
|
||||
begin
|
||||
version_value = `#{git_cmd}`.strip
|
||||
`#{git_cmd}`.strip
|
||||
rescue StandardError
|
||||
version_value = default_value
|
||||
end
|
||||
|
||||
version_value = default_value if version_value.empty?
|
||||
|
||||
version_value
|
||||
default_value
|
||||
end.presence || default_value
|
||||
end
|
||||
|
||||
# Either returns the site_contact_username user or the first admin.
|
||||
|
|
Loading…
Reference in New Issue
Block a user