From 55bfb290c7e79da8c0ec80ba1e34712cf7f9e24f Mon Sep 17 00:00:00 2001 From: Sonlis Date: Tue, 27 Feb 2024 23:53:18 +0200 Subject: [PATCH 1/2] Display the error on failed processing of csv records --- src/manual.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/manual.ts b/src/manual.ts index 0f8c96b..16b0d25 100644 --- a/src/manual.ts +++ b/src/manual.ts @@ -13,9 +13,13 @@ else { // Determine convertor type and run conversion. createAndRunConverter( - process.argv[2].toLocaleLowerCase(), - inputFile, + process.argv[2].toLocaleLowerCase(), + inputFile, ".", () => { process.exit(0); }, - () => { process.exit(99); }); + (error) => { + console.log(`[e] Error details: ${error}`); + process.exit(99); + } + ); } From 5cbe212dc6f863d326c4ffa17bf2b719638f739f Mon Sep 17 00:00:00 2001 From: Dick Wolff <5620002+dickwolff@users.noreply.github.com> Date: Wed, 28 Feb 2024 06:14:44 +0100 Subject: [PATCH 2/2] Bump GitVersion --- GitVersion.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitVersion.yml b/GitVersion.yml index 02d9a9a..c5b0c76 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,4 +1,4 @@ -next-version: 0.6.0 +next-version: 0.6.1 assembly-informational-format: "{NuGetVersion}" mode: ContinuousDeployment branches: