1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-08 18:02:05 +03:00

pop!_os synonym for ubuntu. Use deb package manager.

Summary:
Use Deb package manager on Pop! OS.

X-link: https://github.com/facebook/folly/pull/2135

Reviewed By: Gownta

Differential Revision: D53441949

Pulled By: Orvid

fbshipit-source-id: a88f01aa5d251a57005a050c0fd7068f187a15a8
This commit is contained in:
jbs
2024-02-12 13:42:08 -08:00
committed by Facebook GitHub Bot
parent 1c6e0ecf65
commit b0cc72d0c2

View File

@@ -270,7 +270,7 @@ class HostType(object):
return "homebrew"
if self.distro in ("fedora", "centos", "centos_stream"):
return "rpm"
if self.distro.startswith(("debian", "ubuntu")):
if self.distro.startswith(("debian", "ubuntu", "pop!_os")):
return "deb"
return None