c171551
#!/bin/bash
c171551
set -e
c171551
c171551
VER="${1:?Usage: $0 version destination}"
c171551
DEST="${2:?Usage: $0 version destination}"
c171551
c171551
if [ -f "$DEST" ]; then
c171551
    echo "File $DEST exists already."
c171551
    exit 0
c171551
fi
c171551
c171551
pushd $(mktemp -d)
c171551
wget https://github.com/performancecopilot/grafana-pcp/archive/v$VER/grafana-pcp-$VER.tar.gz
c171551
tar xfz grafana-pcp-$VER.tar.gz
c171551
cd grafana-pcp-$VER
c171551
yarn install
c171551
echo "Compressing..."
c171551
XZ_OPT=-9 tar cJf $DEST node_modules
c171551
popd