From 847192b70c0be08c6d07f3e68cf0b023f8c75dd2 Mon Sep 17 00:00:00 2001 From: Max Gaurav Date: Thu, 19 May 2022 10:11:59 +0530 Subject: [PATCH] fix formatting issue in add actions --- actions/new.action.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/new.action.ts b/actions/new.action.ts index 6817b51d2..044786eb0 100644 --- a/actions/new.action.ts +++ b/actions/new.action.ts @@ -255,7 +255,7 @@ export const retrieveCols = () => { }; const fileExists = (path: string) => { - try{ + try { fs.accessSync(path); return true; } catch (err: any) { @@ -265,6 +265,6 @@ const fileExists = (path: string) => { throw err; } -} +}; export const exit = () => process.exit(1);