Skip to content

Commit

Permalink
Update PactCanIDeployTask.groovy
Browse files Browse the repository at this point in the history
Fixed typo in exception message
  • Loading branch information
lio-wd authored and uglyog committed Aug 2, 2022
1 parent 1a80e41 commit e0b15ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class PactCanIDeployTask extends PactCanIDeployBaseTask {
Latest latest = setupLatestParam()
if ((latest instanceof Latest.UseLatestTag || latest.latest == false) &&
!project.hasProperty(PACTICIPANT_VERSION)) {
throw new GradleScriptException('The CanIDeploy task requires -PpacticipantVersion=... or -Dlatest=true', null)
throw new GradleScriptException('The CanIDeploy task requires -PpacticipantVersion=... or -Platest=true', null)
}
String pacticipantVersion = project.hasProperty(PACTICIPANT_VERSION) ? project.property(PACTICIPANT_VERSION) : ''
String to = null
Expand Down

0 comments on commit e0b15ab

Please sign in to comment.