Skip to content

Commit

Permalink
Updating to match what appears to be nodes current expectations for C…
Browse files Browse the repository at this point in the history
…LI config params
  • Loading branch information
mitch-lindsay committed Aug 31, 2023
1 parent 1acd0ac commit c67137c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/convert-xml-to-fhir-resource.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ function createAndUploadFhirResource() {
filePath = "src/sample-data/cda/Chirp_CCD.cda";
newPath = "test/e2e-test/regression-test/data/cda/ccd.hbs/ccd.hbs-Chirp_CCD.cda.json";
} else {
if ((process.env.npm_config_filePath || '') === '') {
if ((process.env.npm_config_filepath || '') === '') {
console.log("Must specify file path");
return;
}
filePath = "../../" + process.env.npm_config_filePath;
filePath = "../../" + process.env.npm_config_filepath;
newPath = filePath.replace(".xml", "--FHIR-RESOURCE.json");
newPath = newPath.split("tmp").pop();
newPath = "../../tmp/" + newPath;
Expand Down

0 comments on commit c67137c

Please sign in to comment.