diff options
| author | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-06 15:21:50 +0100 | 
|---|---|---|
| committer | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-06 16:19:02 +0100 | 
| commit | 36b3b51a34123ef269533fb0426532929d5da24a (patch) | |
| tree | 73d4c4c5625ec4c741f9b3a73c340a2e194b5084 /src/lib | |
| parent | f390b1d45b3f44a860fef4df2b31064f441b5065 (diff) | |
Fix return
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/config.ts | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/config.ts b/src/lib/config.ts index d235145..dc8e9c8 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -49,7 +49,7 @@ export const getConfig = (): GathioConfig => {      console.error(        "\x1b[31mConfiguration file not found! Have you renamed './config/config-example.toml' to './config/config.toml'?"      ); -    process.exit(1); +    return process.exit(1);    }  };  | 
