2014-11-06 06:07:16 -05:00
|
|
|
module Gitlab
|
|
|
|
module Utils
|
|
|
|
extend self
|
|
|
|
|
|
|
|
# Run system command without outputting to stdout.
|
|
|
|
#
|
|
|
|
# @param cmd [Array<String>]
|
2014-11-06 04:47:38 -05:00
|
|
|
# @return [Boolean]
|
2014-11-06 06:07:16 -05:00
|
|
|
def system_silent(cmd)
|
2014-11-06 04:47:38 -05:00
|
|
|
Popen::popen(cmd).last.zero?
|
2014-11-06 06:07:16 -05:00
|
|
|
end
|
2015-05-02 17:43:46 -04:00
|
|
|
|
|
|
|
def force_utf8(str)
|
|
|
|
str.force_encoding(Encoding::UTF_8)
|
|
|
|
end
|
2014-11-06 06:07:16 -05:00
|
|
|
end
|
|
|
|
end
|