aboutsummaryrefslogtreecommitdiff
path: root/webextension/pack.sh
blob: 6e734b08c998ae899ed95054f7182b7f07dccfb1 (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/wx

zip -r "../taler-wallet-${vers_manifest}.zip" ./*