Bug fixes

This commit is contained in:
Scott Idem
2022-05-07 14:44:34 -04:00
parent bc1a3b2cc5
commit c97e84b0ef

View File

@@ -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}`);