Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: chdir back to the starting directory before exit #167

Prev Previous commit
Next Next commit
fix: chdir back to the starting directory before exit
  • Loading branch information
aeworxet committed May 24, 2024
commit 3b9e3869aa861a0984ef51217d33dce408cc2c51
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { parse } from './parser';
import type { AsyncAPIObject } from './spec-types';

// remember the directory where execution of the program started
export const originDir: string = String(process.env.PWD);
export const originDir = String(process.env.PWD);

/**
*
Expand Down
Loading