omegga 1.2.5 → 1.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -34,15 +34,13 @@ has_lib32gcc="yes" # sorry anyone not running arch/debian
34
34
  lib32gcc_dep="lib32gcc-s1"
35
35
  pkg_manager="apt-get install"
36
36
 
37
- # check if lib32-gcc-libs is installed in arch linux
38
37
  if [[ -f /etc/arch-release ]]; then
38
+ # if lib32-gcc-libs is installed in arch linux
39
39
  lib32gcc_dep="lib32-gcc-libs"
40
40
  pkg_manager="pacman -S"
41
41
  has_lib32gcc=$(pacman -Q lib32-gcc-libs >/dev/null 2>&1 && echo "yes" || echo "no")
42
- fi
43
-
44
- # check if lib32gcc-s1 exists in debian/ubuntu
45
- if [[ -f /etc/debian_version ]] || [[ -f /etc/lsb-release ]]; then
42
+ elif [[ -f /etc/debian_version ]] || [[ -f /etc/lsb-release ]]; then
43
+ # if lib32gcc-s1 exists in debian/ubuntu
46
44
  lib32gcc_dep="lib32gcc-s1"
47
45
  pkg_manager="apt-get install"
48
46
  has_lib32gcc=$(dpkg -s lib32gcc-s1 >/dev/null 2>&1 && echo "yes" || echo "no")