Index: imake.sh =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r6210028a421d6259963bf172efbe4f23abfecf2f --- imake.sh (.../imake.sh) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ imake.sh (.../imake.sh) (revision 6210028a421d6259963bf172efbe4f23abfecf2f) @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash ########################################################################### # # Copyright (c) 2022-2023 Diality Inc. - All Rights Reserved. @@ -15,6 +15,15 @@ # ############################################################################ -./alarmMapping.sh -./cppcheck.sh +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 +