summaryrefslogtreecommitdiff
path: root/webextension/pack.sh
blob: 01abb01b4b285bb8e1cf56e4b525989e651bd156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env bash

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' webextension/manifest.json)

rm -rf dist/wx
mkdir -p dist/wx
cp webextension/manifest.json dist/wx/
cp -r webextension/static/* dist/wx/
cp -r dist/webextension/* dist/wx/

cd dist

zip -r "taler-wallet-${vers_manifest}.zip" wx