From 06c2456f45ed54366790ab4afe8d89298d0ecd3e Mon Sep 17 00:00:00 2001 From: jianglai Date: Fri, 14 Jun 2019 15:02:33 -0400 Subject: [PATCH] Set default environment to production This way when "gradle build" runs it will test if we can successfully stage the produciton GAE files. --- appengine_war.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appengine_war.gradle b/appengine_war.gradle index 63c6e2a7a..efa32bc4d 100644 --- a/appengine_war.gradle +++ b/appengine_war.gradle @@ -8,7 +8,7 @@ def projects = ['production': 'domain-registry', def environment = rootProject.findProperty("environment") if (environment == null) { - environment = 'alpha' + environment = 'production' } def gcpProject = projects[environment] if (gcpProject == null) {