#!/bin/bash # Copyright (C) 2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 source /GenAIExamples/.github/workflows/scripts/change_color log_dir=/GenAIExamples/.github/workflows/scripts/codeScan python -m bandit -r -lll -iii /GenAIExamples >${log_dir}/bandit.log exit_code=$? $BOLD_YELLOW && echo " ----------------- Current log file output start --------------------------" cat ${log_dir}/bandit.log $BOLD_YELLOW && echo " ----------------- Current log file output end --------------------------" && $RESET if [ ${exit_code} -ne 0 ]; then $BOLD_RED && echo "Error!! Please Click on the artifact button to download and check error details." && $RESET exit 1 fi $BOLD_PURPLE && echo "Congratulations, Bandit check passed!" && $LIGHT_PURPLE && echo " You can click on the artifact button to see the log details." && $RESET exit 0