Skip to content

Commit 625fe36

Browse files
authored
tweak(devops): Less verbose rsync output (#4466)
1 parent 5189ddb commit 625fe36

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web/Taskfile.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ tasks:
1111
- cd book && mdbook build
1212
- mkdir -p website/public
1313
# Copy the book into the website path, using rsync so it only copies new files
14-
- rsync -ai --checksum --delete book/book/ website/public/book/
14+
- rsync -ai --checksum --delete --no-times book/book/ website/public/book/
1515
# (we don't use `build-playground-dependencies`, since that uses the dev profile)
1616
- cd playground && npm ci && npm run build
1717
# We place the playground app in a nested path, because we want to use
1818
# prql-lang.org/playground with an iframe containing the playground.
1919
# Possibly there's a more elegant way of doing this...
20-
- rsync -ai --checksum --delete playground/dist/
20+
- rsync -ai --checksum --delete --no-times playground/dist/
2121
website/public/playground/playground/
2222

2323
run-website:

0 commit comments

Comments
 (0)