From c97e84b0efdba1ad779a6c608aff785c0173ddbb Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Sat, 7 May 2022 14:44:34 -0400 Subject: [PATCH] Bug fixes --- app/js/aether_native_app_v3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/js/aether_native_app_v3.js b/app/js/aether_native_app_v3.js index 55faf7e..af15283 100644 --- a/app/js/aether_native_app_v3.js +++ b/app/js/aether_native_app_v3.js @@ -92,7 +92,7 @@ exports.load_config = function () { config_path = path.join(cwd, 'config.json'); console.log(`Config file (config.json) not found under ${config_directory}. Using config in CWD. ${cwd}`); - found_config_path = path.join(cwd, 'config.json'); + let found_config_path = path.join(cwd, 'config.json'); fs.copyFileSync(found_config_path, config_path); console.log(`Found config file copied: ${config_directory}`);