summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhelpers/build1
-rwxr-xr-xhelpers/clean1
-rwxr-xr-xhelpers/config1
3 files changed, 3 insertions, 0 deletions
diff --git a/helpers/build b/helpers/build
index c762b43..a4b8802 100755
--- a/helpers/build
+++ b/helpers/build
@@ -22,6 +22,7 @@ fi
# Read meta config
if [ "${1}" != "noauto" ] && [ -x auto/build ]
then
+ Echo_message "Executing auto/build script."
./auto/build ${@}
fi
diff --git a/helpers/clean b/helpers/clean
index 2b5dac6..77fa1ab 100755
--- a/helpers/clean
+++ b/helpers/clean
@@ -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
diff --git a/helpers/config b/helpers/config
index 2a37dbe..e2eff08 100755
--- a/helpers/config
+++ b/helpers/config
@@ -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