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
|
# Read meta config
|
||||||
if [ "${1}" != "noauto" ] && [ -x auto/build ]
|
if [ "${1}" != "noauto" ] && [ -x auto/build ]
|
||||||
then
|
then
|
||||||
|
Echo_message "Executing auto/build script."
|
||||||
./auto/build ${@}
|
./auto/build ${@}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ set -e
|
||||||
# Read meta config
|
# Read meta config
|
||||||
if [ "${1}" != "noauto" ] && [ -x auto/clean ]
|
if [ "${1}" != "noauto" ] && [ -x auto/clean ]
|
||||||
then
|
then
|
||||||
|
Echo_message "Executing auto/clean script."
|
||||||
./auto/clean ${@}
|
./auto/clean ${@}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ set -e
|
||||||
# Read meta config
|
# Read meta config
|
||||||
if [ "${1}" != "noauto" ] && [ -x auto/config ]
|
if [ "${1}" != "noauto" ] && [ -x auto/config ]
|
||||||
then
|
then
|
||||||
|
Echo_message "Executing auto/config script."
|
||||||
./auto/config ${@}
|
./auto/config ${@}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue