From c80cd6102d474c4e6feae4f4a1e0224dfb501573 Mon Sep 17 00:00:00 2001 From: Leszek Grzanka Date: Wed, 6 Nov 2024 17:19:20 +0100 Subject: [PATCH] fix(JSONScript) update name of the script in the comments to follow renaming (#4441) --- .scripts/dicom-json-generator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.scripts/dicom-json-generator.js b/.scripts/dicom-json-generator.js index f9f529747..e24dddf83 100644 --- a/.scripts/dicom-json-generator.js +++ b/.scripts/dicom-json-generator.js @@ -4,7 +4,7 @@ * The JSON file can be used to load the study into the OHIF Viewer. You can get more detail * in the DICOM JSON Data source on docs.ohif.org * - * Usage: node dicomStudyToJSONLaunch.js + * Usage: node dicom-json-generator.js * * params: * - studyFolder: path to the study folder which contains the DICOM files @@ -30,7 +30,7 @@ const [studyDirectory, urlPrefix, outputPath, scheme = 'dicomweb'] = args; if (args.length < 3 || args.length > 4) { console.error( - 'Usage: node dicomStudyToJSONLaunch.js [scheme]' + 'Usage: node dicom-json-generator.js [scheme]' ); process.exit(1); }