Skip to content

Commit

Permalink
Run Rubocop -A after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
iangmaia committed Feb 1, 2024
1 parent a16bb6f commit 7408a43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def self.file_dependencies
end
end

files_to_copy.map { |o| o.file } + expanded_file_dependencies
files_to_copy.map(&:file) + expanded_file_dependencies
end

## If we specify a directory in `file_dependencies` instead of listing each file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def to_hash
project_name: project_name,
branch: branch,
pinned_hash: pinned_hash,
files_to_copy: files_to_copy.map { |f| f.to_hash },
files_to_copy: files_to_copy.map(&:to_hash),
file_dependencies: file_dependencies
}
end
Expand Down

0 comments on commit 7408a43

Please sign in to comment.