Skip to content

Commit

Permalink
Fix Layout/ArgumentAlignment offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala committed Sep 14, 2024
1 parent 2e4d7bf commit 033c64e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .rubocop_todo.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/heathen/executioner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Heathen
# STDOUT and STDERR for perusal.
class Executioner
attr_reader :logger, :last_exit_status, :last_messages, :last_command,
:stdout, :stderr
:stdout, :stderr

def initialize(log)
@logger = log
Expand Down Expand Up @@ -96,7 +96,7 @@ def _execute(*argv, options)
command = argv.shift

Open3.popen3(ENV, [command, "heathen: #{command}"], *argv,
chdir: options[:dir] || Dir.getwd
chdir: options[:dir] || Dir.getwd
) do |stdin, stdout, stderr, wait_thr|
pid = wait_thr[:pid]
logger.info "[#{pid}] spawn '#{command} #{argv.join(' ')}'"
Expand Down

0 comments on commit 033c64e

Please sign in to comment.