mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-03-03 13:27:12 +00:00
fix: remove redundant AVX2 check for Zen Browser installation (#1014)
This update removes the AVX2-specific logic from the installZenBrowser function. The Zen Browser team discontinued AVX2-optimized releases due to recurring build issues in GitHub workflows, so we now only install zen-browser-bin from AUR. This change streamlines the installation process.
This commit is contained in:
parent
f2f997eb7f
commit
5f6e18b2cc
|
@ -7,11 +7,7 @@ installZenBrowser() {
|
|||
printf "%b\n" "${YELLOW}Installing Zen Browser...${RC}"
|
||||
case "$PACKAGER" in
|
||||
pacman)
|
||||
if grep -q avx2 /proc/cpuinfo; then
|
||||
"$AUR_HELPER" -S --needed --noconfirm zen-browser-avx2-bin
|
||||
else
|
||||
"$AUR_HELPER" -S --needed --noconfirm zen-browser-bin
|
||||
fi
|
||||
"$AUR_HELPER" -S --needed --noconfirm zen-browser-bin
|
||||
;;
|
||||
*)
|
||||
checkFlatpak
|
||||
|
|
Loading…
Reference in New Issue
Block a user