Class: CDO_cmd

Inherits:
OutofplaceCommand show all
Defined in:
lib/file_command.rb

Instance Method Summary collapse

Methods inherited from OutofplaceCommand

#cmd_txt, #inplace?

Methods inherited from FileCommand

#run

Instance Method Details

#command_success?(out, err, status) ⇒ Boolean

cdo almost always prints something to the error stream

Returns:

  • (Boolean)


111
112
113
114
115
# File 'lib/file_command.rb', line 111

def command_success?(out, err, status) # cdo almost always prints something to the error stream
  return false unless status.success?
      
  true
end