Method: RokuBuilder.system

Defined in:
lib/roku_builder.rb

.system(command:) ⇒ String

Run a system command

Parameters:

  • command (String)

    The command to be run

Returns:

  • (String)

    The output of the command



219
220
221
# File 'lib/roku_builder.rb', line 219

def self.system(command:)
  `#{command}`.chomp
end