wallet-core/packages/taler-wallet-webextension/webextension/pack.sh

24 lines
439 B
Bash
Raw Normal View History

2020-04-06 21:53:29 +02:00
#!/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
2020-04-06 21:53:29 +02:00
2020-06-03 13:18:09 +02:00
zipfile="../taler-wallet-${vers_manifest}.zip"
rm -f -- "$zipfile"
zip -r "$zipfile" ./*