prepend_command_timeout_prefix

in lib/github/markup/command_implementation.rb [43:53]


      def prepend_command_timeout_prefix(command)
        timeout_command_prefix = "timeout -s KILL #{timeout_in_seconds}"

        
        if command.is_a?(String)
          "#{timeout_command_prefix} #{command}"
        else
          timeout_command_prefix.split(' ') + command
        end
      end