1
0
mirror of https://github.com/google/nomulus synced 2026-04-19 15:55:21 +00:00

Fix environment specification error message in build.gradle :deploy (#1717)

* Fix environment specification error message in build.gradle :deploy
This commit is contained in:
Ben McIlwain
2022-07-28 15:24:31 -04:00
committed by GitHub
parent f006605753
commit 9914d4d04e

View File

@@ -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}")
}