...

Text file src/github.com/prometheus/alertmanager/scripts/package_assets.sh

Documentation: github.com/prometheus/alertmanager/scripts

     1#!/usr/bin/env bash
     2#
     3# compress static assets
     4
     5set -euo pipefail
     6
     7version="$(< VERSION)"
     8mkdir -p .tarballs
     9tar czf .tarballs/alertmanager-web-ui-${version}.tar.gz ui/app/script.js ui/app/index.html

View as plain text