V3 - The big one #71

Merged
rogs merged 31 commits from v3 into master 2024-12-30 11:01:29 -03:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit b680dd4f6f - Show all commits

View File

@ -179,7 +179,7 @@ check_dependencies() {
if [ "${install_deps,,}" = "y" ]; then if [ "${install_deps,,}" = "y" ]; then
echo "Installing missing packages..." echo "Installing missing packages..."
if ! sudo apt install -y "${missing_packages[@]}"; then if ! sudo apt update && sudo apt install -y "${missing_packages[@]}"; then
log_error "Failed to install missing packages. Please install them manually: ${missing_packages[*]}" log_error "Failed to install missing packages. Please install them manually: ${missing_packages[*]}"
fi fi
log_success "Successfully installed missing packages ✅" log_success "Successfully installed missing packages ✅"

View File

@ -119,7 +119,7 @@ check_dependencies() {
if [ "${install_deps,,}" = "y" ]; then if [ "${install_deps,,}" = "y" ]; then
echo "Installing missing packages..." echo "Installing missing packages..."
if ! sudo apt install -y "${missing_packages[@]}"; then if ! sudo apt update && sudo apt install -y "${missing_packages[@]}"; then
log_error "Failed to install missing packages. Please install them manually: ${missing_packages[*]}" log_error "Failed to install missing packages. Please install them manually: ${missing_packages[*]}"
fi fi
log_success "Successfully installed missing packages ✅" log_success "Successfully installed missing packages ✅"