Lime config fix

This commit is contained in:
Joshua Granick
2018-04-20 19:05:52 -07:00
parent f806557ae7
commit 03e121720d

View File

@@ -143,7 +143,7 @@ class ConfigHelper {
public static function removeConfigValue (name:String):Void {
var path = Sys.getEnv ("LIME_CONFIG");
var path = getConfigPath ();
if (FileSystem.exists (path)) {
@@ -296,7 +296,7 @@ class ConfigHelper {
public static function writeConfigValue (name:String, value:String):Void {
var path = Sys.getEnv ("LIME_CONFIG");
var path = getConfigPath ();
try {