1
0
mirror of https://github.com/google/nomulus synced 2026-01-11 08:20:27 +00:00

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