summaryrefslogtreecommitdiff
path: root/load-properties.gradle
diff options
context:
space:
mode:
authorAmit Kumar <amitkma@e.email>2021-05-07 00:33:43 +0530
committerAmit Kumar <amitkma@e.email>2021-05-07 00:33:43 +0530
commit725f9e3449526e3a88a38dca9ef9b5ee64e4ba50 (patch)
tree0b6ab4fd0b733ef2f7c8d181c9a24ed595eb0ff3 /load-properties.gradle
parentca97c46120b3ce298bfd72bfeb208aa136076ea3 (diff)
Use correct environment variables for mapbox based on git branch
Diffstat (limited to 'load-properties.gradle')
-rw-r--r--load-properties.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/load-properties.gradle b/load-properties.gradle
index b8c6844..71c9fb5 100644
--- a/load-properties.gradle
+++ b/load-properties.gradle
@@ -28,6 +28,6 @@ if (localPropertiesFile.exists()) {
new FileInputStream(localPropertiesFile).withCloseable { is -> p.load(is) }
p.each { name, value -> ext[name] = value }
} else {
- ext["MAPBOX_KEY"] = System.getenv('MAPBOX_KEY_DEV')
- ext["MAPBOX_SECRET_KEY"] = System.getenv('MAPBOX_SECRET_KEY_DEV')
+ ext["MAPBOX_KEY"] = System.getenv('MAPBOX_KEY')
+ ext["MAPBOX_SECRET_KEY"] = System.getenv('MAPBOX_SECRET_KEY')
} \ No newline at end of file