Set default environment to production

This way when "gradle build" runs it will test if we can successfully
stage the produciton GAE files.
This commit is contained in:
jianglai 2019-06-14 15:02:33 -04:00 committed by Lai Jiang
parent c56432ea09
commit 06c2456f45

View file

@ -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) {