aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2021-01-06 15:04:16 +0100
committerPatrick Spek <p.spek@tyil.nl>2021-01-06 15:04:16 +0100
commit7c50131ae8a8a3938e12557ecb350babbddb1f7c (patch)
tree6c81c8788fa1b256b90c5e0f7f81220fb1234eaa
parent9a8cb298e8b57ace460a00ecc374face7b8d0778 (diff)
Use notices for a couple more messages
-rw-r--r--lib/actions/install.bash8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/actions/install.bash b/lib/actions/install.bash
index 5b975e3..dfce732 100644
--- a/lib/actions/install.bash
+++ b/lib/actions/install.bash
@@ -122,6 +122,8 @@ action_install_modules() {
local failed_modules
local modules
+ notice "Starting installation of bundled modules"
+
modules="$(tmpfile)"
awk '/^[^#]/ {print $1}' "$BASEDIR/etc/modules.txt" > "$modules"
@@ -157,7 +159,7 @@ build_moarvm() {
build_prepare "$BASEDIR/src/moarvm-$VERSION/MoarVM-$VERSION" || return
- info "Build log available at $logfile"
+ notice "Build log available at $logfile"
{
perl Configure.pl "$@" \
@@ -177,7 +179,7 @@ build_nqp() {
build_prepare "$BASEDIR/src/nqp-$VERSION/nqp-$VERSION" || return
- info "Build log available at $logfile"
+ notice "Build log available at $logfile"
{
perl Configure.pl --backend="$RSTAR_BACKEND" "$@" \
@@ -196,7 +198,7 @@ build_rakudo() {
build_prepare "$BASEDIR/src/rakudo-$VERSION/rakudo-$VERSION" || return
- info "Build log available at $logfile"
+ notice "Build log available at $logfile"
{
perl Configure.pl --backend="$RSTAR_BACKEND" "$@" \