We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e70b2b commit 6430ccaCopy full SHA for 6430cca
1 file changed
scripts/common/system-info.sh
@@ -627,8 +627,12 @@ if does_bin_exist 'uname'; then
627
uname -r | grep -q "valve.*neptune" && DISTRO="SteamOS"
628
fi
629
630
-if [ "${DISTRO}" = "arch" ] \
631
-|| [ "${DISTRO}" = "ARCH" ]; then
+if [ "${DISTRO}" = "alpine" ]; then
+ DISTRO='Alpine Linux'
632
+ DISTRO_FAMILY='Alpine'
633
+ OS='Linux'
634
+elif [ "${DISTRO}" = "arch" ] \
635
+ || [ "${DISTRO}" = "ARCH" ]; then
636
DISTRO='Arch Linux'
637
DISTRO_FAMILY='Arch'
638
OS='Linux'
0 commit comments