trustcrypto / python-onlykey

The OnlyKey Python Command-Line Utility is a command line tool targeted towards more advanced users. This can be used for configuration and testing.
https://docs.crp.to/command-line.html
47 stars 22 forks source link

Fix unsafe install instructions for ArchLinux #54

Closed thurstylark closed 2 years ago

thurstylark commented 2 years ago

pacman -Sy <packagename> puts the user in a partial upgrade state, which is not supported, and can cause unrelated breakage. Perform full system update along with package installation with pacman -Syu <packagename>

Ref: https://wiki.archlinux.org/title/System_maintenance#Partial_upgrades_are_unsupported Further Discussion: https://gist.github.com/vodik/5660494

onlykey commented 2 years ago

Thanks!