Skip to content

Commit

Permalink
tweak(devops): Less verbose rsync output (#4466)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty authored May 11, 2024
1 parent 5189ddb commit 625fe36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ tasks:
- cd book && mdbook build
- mkdir -p website/public
# Copy the book into the website path, using rsync so it only copies new files
- rsync -ai --checksum --delete book/book/ website/public/book/
- rsync -ai --checksum --delete --no-times book/book/ website/public/book/
# (we don't use `build-playground-dependencies`, since that uses the dev profile)
- cd playground && npm ci && npm run build
# We place the playground app in a nested path, because we want to use
# prql-lang.org/playground with an iframe containing the playground.
# Possibly there's a more elegant way of doing this...
- rsync -ai --checksum --delete playground/dist/
- rsync -ai --checksum --delete --no-times playground/dist/
website/public/playground/playground/

run-website:
Expand Down

0 comments on commit 625fe36

Please sign in to comment.