Formatting

This commit is contained in:
2024-11-04 14:47:43 -05:00
parent fe56081a51
commit 4fd2901628

View File

@@ -479,7 +479,7 @@ install_package() {
|| "${PKG_QUERY[@]}" "$_pkg" &>/dev/null; }; then || "${PKG_QUERY[@]}" "$_pkg" &>/dev/null; }; then
pkg_array+=("$_pkg") pkg_array+=("$_pkg")
else else
debug "$_pkg already installed, skipping installation" debug "$_pkg is already installed, skipping installation"
fi fi
done done
else else
@@ -488,7 +488,7 @@ install_package() {
|| "${PKG_QUERY[@]}" "$pkg" &>/dev/null; }; then || "${PKG_QUERY[@]}" "$pkg" &>/dev/null; }; then
pkg_array+=("$pkg") pkg_array+=("$pkg")
else else
debug "$pkg already installed, skipping installation" debug "$pkg is already installed, skipping installation"
fi fi
fi fi
done done