File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
operator/src/main/resources/scripts Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -722,7 +722,7 @@ function checkAuxiliaryImage() {
722
722
rm -f ${AUXILIARY_IMAGE_PATH} /testaccess.tmp || return 1
723
723
724
724
# The container .out files embed their container name, the names will sort in the same order in which the containers ran
725
- out_files=$( set -o pipefail ; ls -1 $AUXILIARY_IMAGE_PATH /auxiliaryImageLogs/* .out 2>&1 | sort --version-sort) \
725
+ out_files=$( set -o pipefail ; ls -1 $AUXILIARY_IMAGE_PATH /auxiliaryImageLogs/* .out > /dev/null 2>&1 | sort --version-sort) \
726
726
|| (trace SEVERE " Auxiliary Image: Assertion failure. No files found in '$AUXILIARY_IMAGE_PATH /auxiliaryImageLogs/*.out" \
727
727
&& return 1)
728
728
severe_found=false
@@ -742,7 +742,6 @@ function checkAuxiliaryImage() {
742
742
trace " Auxiliary Image: End of '${out_file} ' contents"
743
743
done
744
744
[ " ${severe_found} " = " true" ] && return 1
745
- rm -fr $AUXILIARY_IMAGE_PATH /auxiliaryImageLogs
746
745
[ -z " $( ls -A $AUXILIARY_IMAGE_PATH ) " ] \
747
746
&& trace SEVERE " Auxiliary Image: No files found in '$AUXILIARY_IMAGE_PATH '. " \
748
747
" Do your auxiliary images have files in their '$AUXILIARY_IMAGE_PATH ' directories? " \
You can’t perform that action at this time.
0 commit comments