Skip to content

Commit

Permalink
fix: target path undo style
Browse files Browse the repository at this point in the history
  • Loading branch information
v-vila committed Mar 5, 2024
1 parent 630061c commit b55e742
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ Style/TernaryParentheses:
Enabled: false
Style/EmptyMethod:
Enabled: false
Style/HashSyntax:
Enabled: false
Lint/UselessAssignment:
Exclude:
- "**/spec/**/*"
Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/common/actions/copy_artifact_action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def self.run(params)
sh("mkdir -p #{target_path}")
sh("cp \"#{artifact_path}\" \"#{target_path}/#{new_artifact_name_with_extension}\"")
else
other_action.copy_artifacts(target_path:, artifacts: [artifact_path])
other_action.copy_artifacts(target_path: target_path, artifacts: [artifact_path])
end
end

Expand Down

0 comments on commit b55e742

Please sign in to comment.