From 9914d4d04ea6e5ef3b2d7e6ef07b7d8b5104e9b0 Mon Sep 17 00:00:00 2001 From: Ben McIlwain Date: Thu, 28 Jul 2022 15:24:31 -0400 Subject: [PATCH] Fix environment specification error message in build.gradle :deploy (#1717) * Fix environment specification error message in build.gradle :deploy --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c8c79156a..c5d36d4a4 100644 --- a/build.gradle +++ b/build.gradle @@ -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}") }