Skip to content

Instantly share code, notes, and snippets.

@grizmio
Created November 25, 2021 15:05
Show Gist options
  • Save grizmio/7e76407f9e73a68770d3348caa820ef2 to your computer and use it in GitHub Desktop.
Save grizmio/7e76407f9e73a68770d3348caa820ef2 to your computer and use it in GitHub Desktop.
One liner to update codium on ubuntu and debian
curl -L $(curl -Ls https://api.github.com/repos/VSCodium/vscodium/releases/latest | jq -c '.assets|map(select(.browser_download_url | contains("_amd64.deb")))|.[0].browser_download_url'|tr -d '"') --output /tmp/codium.deb && sudo dpkg -i /tmp/codium.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment