diff --git a/src/dev/code_coverage/shell_scripts/fix_html_reports_parallel.sh b/src/dev/code_coverage/shell_scripts/fix_html_reports_parallel.sh deleted file mode 100644 index 6e6ba9e1b1118..0000000000000 --- a/src/dev/code_coverage/shell_scripts/fix_html_reports_parallel.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -EXTRACT_START_DIR=tmp/extracted_coverage -EXTRACT_END_DIR=target/kibana-coverage -COMBINED_EXRACT_DIR=/${EXTRACT_START_DIR}/${EXTRACT_END_DIR} - -PWD=$(pwd) -du -sh $COMBINED_EXRACT_DIR - -echo "### Functional: replacing path in json files" -for i in {1..9}; do - sed -i "s|/dev/shm/workspace/kibana|${PWD}|g" $COMBINED_EXRACT_DIR/functional/${i}*.json & -done -wait