#!/bin/bash ########################################################################### # # Copyright (c) 2022-2023 Diality Inc. - All Rights Reserved. # # THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN # WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # # @file imake.sh # # @author (last) Behrouz NematiPour # @date (last) 18-Oct-2022 # @author (original) Behrouz NematiPour # @date (original) 13-Oct-2022 # ############################################################################ if [[ "$1" == "0" ]]; then echo " ********** skipped the alarmMapping call **********" else ./alarmMapping.sh fi if [[ "$2" == "0" ]]; then echo " ********** skipped the cppcheck call **********" else ./cppcheck.sh fi