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

Add Linux Mint to getdeps Debian package manager options

Summary:
X-link: https://github.com/facebookincubator/zstrong/pull/909

Linux Mint is based on Ubuntu and installs correctly with the same options. This adds it to the supported versions so that running `sudo ./install-system-packages.sh` succeeds.

X-link: https://github.com/facebook/watchman/pull/1234

Reviewed By: chadaustin

Differential Revision: D59666084

Pulled By: genevievehelsel

fbshipit-source-id: cfdee239be6358d4c8e2f1154391159a40ef91f4
This commit is contained in:
lamasters
2024-07-13 13:50:32 -07:00
committed by Facebook GitHub Bot
parent c4a81a2adb
commit 8307ef7cd7

View File

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