summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/pack.sh
blob: e762ab8676ac22797eea27dad2cf986d0c9aeb02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash
# This file is in the public domain.

set -eu

if [[ ! -e package.json ]]; then
  echo "Please run this from the root of the repo.">&2
  exit 1
fi

vers_manifest=$(jq -r '.version' manifest.json)

zipfile="taler-wallet-webextension-${vers_manifest}.zip"

TEMP_DIR=$(mktemp -d)
jq '. | .name = "GNU Taler Wallet" ' manifest.json > $TEMP_DIR/manifest.json
cp -r dist static $TEMP_DIR
(cd $TEMP_DIR && zip -r "$zipfile" dist static manifest.json)
mkdir -p extension
mv "$TEMP_DIR/$zipfile" ./extension/
rm -rf $TEMP_DIR
echo "Packed webextension: extension/$zipfile"