From 913f08735627d11d9661ce44569a46672178f58f Mon Sep 17 00:00:00 2001 From: Croydon Date: Mon, 22 Jun 2020 23:32:48 +0200 Subject: [PATCH] Add Pop!_OS to the list of APT based distros --- conans/client/tools/oss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conans/client/tools/oss.py b/conans/client/tools/oss.py index 6317249e151..9ec604f1bf4 100644 --- a/conans/client/tools/oss.py +++ b/conans/client/tools/oss.py @@ -178,7 +178,7 @@ def _get_linux_distro_info(self): @property def with_apt(self): - apt_distros = ("debian", "ubuntu", "knoppix", "linuxmint", "raspbian", "neon") + apt_distros = ("debian", "ubuntu", "knoppix", "linuxmint", "raspbian", "neon", "pop") return self.is_linux and self.linux_distro in apt_distros @property