File: package_assets.sh

package info (click to toggle)
prometheus 2.42.0%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 22,628 kB
  • sloc: javascript: 2,423; yacc: 587; sh: 378; lex: 183; makefile: 179
file content (10 lines) | stat: -rwxr-xr-x 236 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash
#
# compress static assets

set -euo pipefail

version="$(< VERSION)"
mkdir -p .tarballs
cd web/ui
find static -type f -not -name '*.gz' -print0 | xargs -0 tar czf ../../.tarballs/prometheus-web-ui-${version}.tar.gz