Printing message when auto scripts are used to make debug logs more understandable.
This commit is contained in:
parent
4aebed6033
commit
d1612f05af
|
@ -22,6 +22,7 @@ fi
|
|||
# Read meta config
|
||||
if [ "${1}" != "noauto" ] && [ -x auto/build ]
|
||||
then
|
||||
Echo_message "Executing auto/build script."
|
||||
./auto/build ${@}
|
||||
fi
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ set -e
|
|||
# Read meta config
|
||||
if [ "${1}" != "noauto" ] && [ -x auto/clean ]
|
||||
then
|
||||
Echo_message "Executing auto/clean script."
|
||||
./auto/clean ${@}
|
||||
fi
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ set -e
|
|||
# Read meta config
|
||||
if [ "${1}" != "noauto" ] && [ -x auto/config ]
|
||||
then
|
||||
Echo_message "Executing auto/config script."
|
||||
./auto/config ${@}
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue