Skip to content

Commit

Permalink
feat: Manjaro support (#99)
Browse files Browse the repository at this point in the history
- added Manjaro as an OS supporting pacman
  • Loading branch information
okinskas committed Jul 29, 2020
1 parent 2beedaa commit 17473f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/packager
Expand Up @@ -56,7 +56,7 @@ if ! type zip > /dev/null 2>&1; then
exit 1
fi
function package_libc_via_pacman {
if grep "Arch Linux" < /etc/os-release > /dev/null 2>&1; then
if grep --extended-regexp "Arch Linux|Manjaro Linux" < /etc/os-release > /dev/null 2>&1; then
if type pacman > /dev/null 2>&1; then
pacman --query --list --quiet glibc | sed -E '/\.so$|\.so\.[0-9]+$/!d'
fi
Expand Down

0 comments on commit 17473f8

Please sign in to comment.