Skip to content

Commit

Permalink
Fixed wording in two log messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed May 1, 2024
1 parent 965189c commit fa33693
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ronin-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ function auto_install_gpp()
function auto_install_make()
{
if ! command -v make >/dev/null; then
log "Install make ..."
log "Installing make ..."
install_packages make || fail "Failed to install make!"
fi
}
Expand All @@ -348,7 +348,7 @@ function auto_install_pkg_config()
# NOTE: BSDs needs pkg-config to compile the sqlite3 gem
case "$package_manager" in
pkg)
log "Install pkg-config ..."
log "Installing pkg-config ..."
install_packages devel/pkgconf
;;
esac || fail "Failed to install pkg-config!"
Expand Down
4 changes: 2 additions & 2 deletions ronin-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ function auto_install_gpp()
function auto_install_make()
{
if ! command -v make >/dev/null; then
log "Install make ..."
log "Installing make ..."
install_packages make || fail "Failed to install make!"
fi
}
Expand All @@ -300,7 +300,7 @@ function auto_install_pkg_config()
# NOTE: BSDs needs pkg-config to compile the sqlite3 gem
case "$package_manager" in
pkg)
log "Install pkg-config ..."
log "Installing pkg-config ..."
install_packages devel/pkgconf
;;
esac || fail "Failed to install pkg-config!"
Expand Down

0 comments on commit fa33693

Please sign in to comment.