Skip to content

Commit

Permalink
Fix environment specification error message in build.gradle :deploy (g…
Browse files Browse the repository at this point in the history
…oogle#1717)

* Fix environment specification error message in build.gradle :deploy
  • Loading branch information
CydeWeys authored Jul 28, 2022
1 parent f006605 commit 9914d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def verifyDeploymentParams() {
System.err.println('-----------------------------------------------------------------')
throw new GradleException('Aborting. See prominent error above.')
} else if (gcpProject == null) {
def error = 'You must specify -P environment={alpha,crash,qa}'
def error = 'You must specify -Penvironment={alpha,crash,qa}'
System.err.println("\033[33;1m${error}\033[0m")
throw GradleException("Aborting: ${error}")
}
Expand Down

0 comments on commit 9914d4d

Please sign in to comment.