17 lines
557 B
Bash
Executable File
17 lines
557 B
Bash
Executable File
#!/bin/bash
|
|
set -xeuo pipefail
|
|
cd "$(git rev-parse --show-toplevel)/jakstys.lt"
|
|
|
|
hugo --cleanDestinationDir --printPathWarnings --panicOnWarning --log
|
|
|
|
cd public
|
|
zopfli=$(bazel run --ui_event_filters=-info,-stdout,-stderr --noshow_progress --run_under=echo @zopfli//:zopfli)
|
|
brotli=$(bazel run --ui_event_filters=-info,-stdout,-stderr --noshow_progress --run_under=echo @brotli//:brotli)
|
|
|
|
find . \
|
|
-name '*.html' -or \
|
|
-name '*.xml' -or \
|
|
-name '*.txt' -or \
|
|
-name '*.css' -or \
|
|
-name '*.map' | parallel --bar "$zopfli {} && $brotli {}"
|