Skip to content

Commit

Permalink
fix formatting issue in add actions
Browse files Browse the repository at this point in the history
  • Loading branch information
maxgaurav committed May 19, 2022
1 parent 097d53f commit 847192b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actions/new.action.ts
Expand Up @@ -255,7 +255,7 @@ export const retrieveCols = () => {
};

const fileExists = (path: string) => {
try{
try {
fs.accessSync(path);
return true;
} catch (err: any) {
Expand All @@ -265,6 +265,6 @@ const fileExists = (path: string) => {

throw err;
}
}
};

export const exit = () => process.exit(1);

0 comments on commit 847192b

Please sign in to comment.