Skip to content

Commit

Permalink
Optimize script output
Browse files Browse the repository at this point in the history
  • Loading branch information
lbianchi-lbl committed Feb 20, 2024
1 parent ea6c736 commit e451b39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install-quarto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ filename="quarto-${QUARTO_RELEASE}-linux-amd64.tar.gz"

mkdir -p "$INSTALL_DIR" "$BIN_DIR"
wget --quiet "https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_RELEASE}/${filename}"
tar -C "$INSTALL_DIR" -xvzf "$filename"
ls -lth "$filename"
tar -C "$INSTALL_DIR" -xzf "$filename"
rm "$filename"
ln -s "${INSTALL_DIR}/quarto-${QUARTO_RELEASE}/bin/quarto" "${BIN_DIR}/quarto"
which -a quarto
Expand Down

0 comments on commit e451b39

Please sign in to comment.