Skip to content

Instantly share code, notes, and snippets.

@dpastoor
Created March 11, 2022 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpastoor/e21ae2e4b5a3939e26899e2bab8dc7c9 to your computer and use it in GitHub Desktop.
Save dpastoor/e21ae2e4b5a3939e26899e2bab8dc7c9 to your computer and use it in GitHub Desktop.
quarto updates
#!/bin/bash
set -ex
curl -s https://api.github.com/repos/quarto-dev/quarto-cli/releases/latest |
jq '.assets[] | select(.name | contains("macos.pkg")) | .browser_download_url' |
xargs curl -o /tmp/quarto.pkg -L
installer -pkg /tmp/quarto.pkg -target CurrentUserHomeDirectory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment