Skip to content

Conversation

@willmartian
Copy link

@willmartian willmartian commented Oct 30, 2025

Updates the quick install script to not exit early on Pop!_OS (based on Ubuntu). The script works (for me) after making this change.

@willmartian willmartian changed the title Update install.sh to support PopOS Update install.sh to support Pop!_OS Oct 30, 2025

id=$(grep '^ID=' /etc/os-release | cut -d '=' -f 2)
if [ "${id}" != ubuntu ]; then
if [[ "${id}" != ubuntu || "${id}" != pop ]]; then
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please test this version?

Suggested change
if [[ "${id}" != ubuntu || "${id}" != pop ]]; then
if [ "${id}" != ubuntu ] && [ "${id}" != pop ]; then

We should fail if both do not match (the current version seems to support everything). And we should stick with sh instead of bash. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

2 participants