Skip to content

Commit

Permalink
fix: verification-required command invalid arg number
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Nov 23, 2023
1 parent fc57fbb commit fa3b1ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pact_broker/client/cli/matrix_commands.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def verification_required(*ignored_but_necessary)
selectors = VersionSelectorOptionsParser.call(ARGV)
validate_can_i_deploy_selectors(selectors)
verification_required_options = { output: options.output, verbose: options.verbose, retry_while_unknown: 0 }
result = VerificationRequired.call(options.broker_base_url, selectors, { to_tag: options.to, to_environment: options.in_environment, ignore_selectors: [] }, verification_required_options, pact_broker_client_options)
result = VerificationRequired.call(selectors, { to_tag: options.to, to_environment: options.in_environment, ignore_selectors: [] }, verification_required_options, pact_broker_client_options)
$stdout.puts result.message
$stdout.flush
exit(1) unless result.success
Expand Down

0 comments on commit fa3b1ca

Please sign in to comment.