feat: Add support for Manjaro Linux

If applied, this commit adds support for Manjaro Linux, an Arch Linux
downstream variant. Both use pacman as their package manager.

Change-Id: Ib95834bf919b045a871e919973871f5303a4c6c9
This commit is contained in:
Cody Lee Cochran 2021-10-15 08:10:38 -05:00 committed by Cody Lee Cochran
parent d0fba55d50
commit 80d82a4456
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ class Depends(object):
elif distro_id in ["gentoo"]:
atoms.add("emerge")
self.platform = Emerge()
elif distro_id in ["arch"]:
elif distro_id in ["arch", "manjaro"]:
atoms.add("pacman")
self.platform = Pacman()
elif distro_id in ["alpine"]: