Skip to content

Commit

Permalink
separate key and value of exclusion option
Browse files Browse the repository at this point in the history
  • Loading branch information
kato2222 committed Nov 30, 2016
1 parent d2d10c0 commit 3d3aaed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/synx/actions/synx_action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def self.run(params)
cmd << ["--quiet"] if params[:quiet]
if params[:exclusion]
Array(params[:exclusion]).each {|exclusion|
cmd << ["--exclusion #{exclusion}"] }
cmd.concat ["--exclusion", exclusion] }
end
cmd << [project_name]
Actions.sh(Shellwords.join(cmd))
Expand Down

0 comments on commit 3d3aaed

Please sign in to comment.