minbrowser / min

A fast, minimal browser that protects your privacy
https://minbrowser.org/
Apache License 2.0
7.9k stars 704 forks source link

remove dangerous pacman -Sy command for arch linux install #2188

Closed pswilde closed 1 year ago

pswilde commented 1 year ago

Using pacman -Sy <package> in Arch Linux distributions is dangerous as it can lead to dependency mismatches and a "partial upgrade".
using pacman -S <package> is the correct process, or if you want to update to the latest versions, using the full upgrade command, pacman -Syu <package> will update all packages and install the latest version of your package
https://wiki.archlinux.org/title/System_maintenance#Partial_upgrades_are_unsupported

PalmerAL commented 1 year ago

Good to know, thanks!