lib/hillary/shellable.rb in hillary-0.0.3 vs lib/hillary/shellable.rb in hillary-0.0.4

- old
+ new

@@ -19,10 +19,10 @@ end def shell(command, options = {}) options = {ignore_errors: false, logger: Logger.new($stdout)}.merge(options) logger = options[:logger] - logger.info(command) + logger.debug(command) output = `#{command} 2>1` status = $? unless status.success?