mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-18 03:24:05 -08:00
9 lines
150 B
Bash
9 lines
150 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# compress static assets
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
cd web/ui
|
||
|
find static -type f -name '*.gz' -print0 | xargs -0 tar cf static.tar.gz
|