Created
March 11, 2022 14:51
-
-
Save dpastoor/e21ae2e4b5a3939e26899e2bab8dc7c9 to your computer and use it in GitHub Desktop.
quarto updates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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