Skip to content

Commit

Permalink
Addressed a problem flagged by shellcheck
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Foster <derek.foster@intel.com>
  • Loading branch information
ffoulkes committed Nov 4, 2024
1 parent 35e482f commit 85c03e1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/dpdk/report-krnlmon-coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ TEST_LABEL=krnlmon
mkdir -p ${OUTPUT_DIR}

# Empty it for good measure.
rm -fr ${OUTPUT_DIR}/*
rm -fr ${OUTPUT_DIR:?}/*

# Capture the coverage data, excluding files in directories
# that don't interest us.
Expand Down
2 changes: 1 addition & 1 deletion scripts/dpdk/report-ovsp4rt-coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ TEST_LABEL=ovsp4rt
mkdir -p ${OUTPUT_DIR}

# Empty it for good measure.
rm -fr ${OUTPUT_DIR}/*
rm -fr ${OUTPUT_DIR:?}/*

# Capture the coverage data, excluding files in directories
# that don't interest us.
Expand Down
2 changes: 1 addition & 1 deletion scripts/es2k/report-krnlmon-coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ TEST_LABEL=krnlmon
mkdir -p ${OUTPUT_DIR}

# Empty it for good measure.
rm -fr ${OUTPUT_DIR}/*
rm -fr ${OUTPUT_DIR:?}/*

# Capture the coverage data, excluding files in directories
# that don't interest us.
Expand Down
2 changes: 1 addition & 1 deletion scripts/es2k/report-ovsp4rt-coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ TEST_LABEL=ovsp4rt
mkdir -p ${OUTPUT_DIR}

# Empty it for good measure.
rm -fr ${OUTPUT_DIR}/*
rm -fr ${OUTPUT_DIR:?}/*

# Capture the coverage data, excluding files in directories
# that don't interest us.
Expand Down

0 comments on commit 85c03e1

Please sign in to comment.