mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-19 19:14:53 +00:00
feat: add -av opts to gentoo emerge command
This commit is contained in:
parent
fe8b2e14a3
commit
d6a0d79084
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ impl LinuxDistro {
|
|||
Self::Alpine => format!("sudo apk add {}", packages.join(" ")),
|
||||
Self::Debian => format!("sudo apt install {}", packages.join(" ")),
|
||||
Self::Fedora => format!("sudo dnf install {}", packages.join(" ")),
|
||||
Self::Gentoo => format!("sudo emerge {}", packages.join(" ")),
|
||||
Self::Gentoo => format!("sudo emerge -av {}", packages.join(" ")),
|
||||
Self::Suse => format!("sudo zypper install {}", packages.join(" ")),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue