fixed bug with using --env; moved lock an log files to os.tmpdir()

This commit is contained in:
Josh Guyette 2024-02-13 06:59:12 -06:00
parent 960359e1e0
commit ab0f586bbe
1 changed files with 9 additions and 9 deletions

18
ngenv
View File

@ -39,7 +39,7 @@ function getOptions() {
if (options.verbose) console.log("Options:", options); if (options.verbose) console.log("Options:", options);
// Find the .env file // Find the .env file
const dotEnvFile = findDotEnv(options?.env ?? ".env"); const dotEnvFile = options?.env ?? findDotEnv(".env");
if (!dotEnvFile) { if (!dotEnvFile) {
console.error( console.error(
`The specified environment file was not found: ${options?.env ?? ".env"}` `The specified environment file was not found: ${options?.env ?? ".env"}`
@ -113,20 +113,20 @@ function readNgrokConfig() {
} }
// Setup the ngenv folder // Setup the ngenv folder
const projectFolder = findProjectFolder(options?.env ?? ".env"); const tmpFolder = os.tmpdir();
if (!projectFolder) { if (!tmpFolder) {
console.error( console.error(
"No project folder found! Make sure there is a .env file in the project folder." "No project folder found! Make sure there is a .env file in the project folder."
); );
process.exit(1); process.exit(1);
} }
if (options.verbose) console.log(`Using project folder: ${projectFolder}`); if (options.verbose) console.log(`Using project folder: ${tmpFolder}`);
if (!fs.existsSync(`${projectFolder}/.ngenv`)) { if (!fs.existsSync(`${tmpFolder}/.ngenv`)) {
fs.mkdirSync(`${projectFolder}/.ngenv`); fs.mkdirSync(`${tmpFolder}/.ngenv`);
} }
const lockFile = `${projectFolder}/.ngenv/running.lock`; const lockFile = `${tmpFolder}/.ngenv/running.lock`;
const outLogFile = `${projectFolder}/.ngenv/out.log`; const outLogFile = `${tmpFolder}/.ngenv/out.log`;
const errLogFile = `${projectFolder}/.ngenv/err.log`; const errLogFile = `${tmpFolder}/.ngenv/err.log`;
/******************************************* Startup *******************************************/ /******************************************* Startup *******************************************/