Skip to content

Commit

Permalink
/tmp/tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Bromeon committed Jun 23, 2024
1 parent 29cdf3f commit 38b245e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/other/apply-doc-cfg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ if [[ "$installSd" == "true" ]]; then
# Install sd (modern sed). No point in waiting for eternal `cargo install` if we can fetch a prebuilt binary in 1s.
echo "$PRE install sd (modern sed)..."
curl -L https://github.com/chmln/sd/releases/download/v${SD_VERSION}/sd-v${SD_VERSION}-x86_64-unknown-linux-musl.tar.gz -o archive.tar.gz
mkdir -p tools
tar -zxvf archive.tar.gz -C tools --strip-components=1
alias sd=./tools/sd
mkdir -p /tmp/tools
tar -zxvf archive.tar.gz -C /tmp/tools --strip-components=1
alias sd=/tmp/tools/sd
fi

echo "$PRE preprocess docs..."
Expand Down

0 comments on commit 38b245e

Please sign in to comment.