mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Fix assets tarball (#10548)
The tarball should be compressed and only use uncompressed assets. In that way, uit can be used by downstream distros easily. they can either download the assets and serve it as is or use the compress script to have it in the binary. Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
This commit is contained in:
parent
90e6db6d45
commit
344b272b3e
|
@ -5,4 +5,4 @@
|
|||
set -euo pipefail
|
||||
|
||||
cd web/ui
|
||||
find static -type f -name '*.gz' -print0 | xargs -0 tar cf static.tar.gz
|
||||
find static -type f -not -name '*.gz' -print0 | xargs -0 tar czf static.tar.gz
|
||||
|
|
Loading…
Reference in a new issue