From 2f876263a655ce8701bc9164a6fda147e555e19e Mon Sep 17 00:00:00 2001 From: Oleh Omelchenko Date: Wed, 21 Jan 2026 14:45:38 +0200 Subject: [PATCH] fix: build.sh --- build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index da3c93b..a353b45 100755 --- a/build.sh +++ b/build.sh @@ -1,11 +1,11 @@ #!/bin/bash set -e -# Install Quarto +# Install Quarto to /tmp (outside repo to avoid processing its template files) QUARTO_VERSION="1.6.42" -curl -LO "https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" -tar -xzf "quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" -export PATH="$PWD/quarto-${QUARTO_VERSION}/bin:$PATH" +curl -L "https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" -o /tmp/quarto.tar.gz +tar -xzf /tmp/quarto.tar.gz -C /tmp +export PATH="/tmp/quarto-${QUARTO_VERSION}/bin:$PATH" # Install Python dependencies pip install -r requirements.txt