From 913fa4e3333f1146e522795b6b2ac8bef5c3f5ca Mon Sep 17 00:00:00 2001 From: Postmodern Date: Tue, 7 May 2024 20:32:59 -0700 Subject: [PATCH] Add missing logging messages. --- ronin-dev.sh | 2 ++ ronin-install.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ronin-dev.sh b/ronin-dev.sh index a5611a5..57983e8 100755 --- a/ronin-dev.sh +++ b/ronin-dev.sh @@ -311,6 +311,7 @@ function auto_install_rubygems() function auto_install_binutils() { if ! command -v ld >/dev/null || ! command -v ar >/dev/null; then + log "Installing binutils ..." install_packages binutils || \ fail "Failed to install binutils!" fi @@ -419,6 +420,7 @@ function termux_install_nokogiri() # XXX: compile nokogiri against the system's libxml2 library, # to workaround issue with the libxml2 tar archive containing # hardlinks. + log "Installing nokogiri ..." $gem install nokogiri --platform ruby -- --use-system-libraries || \ warn "Failed to compile nokogiri. Proceeding anyways." } diff --git a/ronin-install.sh b/ronin-install.sh index de2c96e..ff7a226 100755 --- a/ronin-install.sh +++ b/ronin-install.sh @@ -263,6 +263,7 @@ function auto_install_rubygems() function auto_install_binutils() { if ! command -v ld >/dev/null || ! command -v ar >/dev/null; then + log "Installing binutils ..." install_packages binutils || \ fail "Failed to install binutils!" fi @@ -356,6 +357,7 @@ function termux_install_nokogiri() # XXX: compile nokogiri against the system's libxml2 library, # to workaround issue with the libxml2 tar archive containing # hardlinks. + log "Installing nokogiri ..." $gem install nokogiri --platform ruby -- --use-system-libraries || \ warn "Failed to compile nokogiri. Proceeding anyways." }