File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 22MANIFESTS_FILE=${1:- " " }
33ADD_CHART=${2:- " true" }
44CHECK_ENGINE_FILE=${3:- " ./fountain/hack/check-engine-images.py" }
5+ SKIP_DELETE_FILE=${4:- " " }
56
67
78add_chart_repo () {
@@ -31,8 +32,10 @@ check_service_version_images() {
3132 images=" "
3233 if [[ -f " ${check_engine_result_file} " ]]; then
3334 images=$( yq e ' .' ${chart_name_tmp} ' [0].images[]' ${check_engine_result_file} )
34- rm -rf ${check_engine_result_file}
35- rm -rf charts/${chart_name_tmp} -${chart_version_tmp} .tgz
35+ if [[ -z " ${SKIP_DELETE_FILE} " || " ${check_engine_result_file} " != * " ${SKIP_DELETE_FILE} " * ]]; then
36+ rm -rf ${check_engine_result_file}
37+ rm -rf charts/${chart_name_tmp} -${chart_version_tmp} .tgz
38+ fi
3639 fi
3740 repository=" "
3841 for repository in $( echo " $images " ) ; do
Original file line number Diff line number Diff line change 22CVE-2025-32445
33CVE-2025-62156
44CVE-2025-62157
5+ CVE-2025-66626
You can’t perform that action at this time.
0 commit comments