Skip to content

Commit

Permalink
fix(scripts): directory paths
Browse files Browse the repository at this point in the history
  • Loading branch information
deemp committed May 21, 2024
1 parent 4b66893 commit 6cdf577
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function convert_phi_to_eo {

print_message "Convert PHI to EO without normalization"

mkdir_clean eo-non-normalized
mkdir_clean "$PIPELINE_EO_NON_NORMALIZED_DIR"

cd "$PIPELINE_PHI_DIR"
cp -r ../eo/.eoc .
Expand Down Expand Up @@ -130,7 +130,7 @@ function normalize {

print_message "Normalize PHI"

mkdir_clean phi-normalized
mkdir_clean "$PIPELINE_PHI_NORMALIZED_DIR"

cd "$PIPELINE_PHI_DIR"

Expand Down Expand Up @@ -195,7 +195,7 @@ function test_with_normalization {

print_message "Test EO with normalization"

mkdir_clean eo-normalized
mkdir_clean "$PIPELINE_EO_NORMALIZED_DIR"

cd "$PIPELINE_EO_NORMALIZED_DIR"
cp -r "$PIPELINE_PHI_NORMALIZED_DIR"/.eoc/print/!(org) .
Expand Down

0 comments on commit 6cdf577

Please sign in to comment.