Skip to content

Commit

Permalink
Add missing logging messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed May 8, 2024
1 parent cb31890 commit 913fa4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ronin-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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."
}
Expand Down
2 changes: 2 additions & 0 deletions ronin-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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."
}
Expand Down

0 comments on commit 913fa4e

Please sign in to comment.