blob: a8779b37c373b636e0179afcdf89f99469119e3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
# Pack up the extension as an xpi file.
set +x
# directory where our script resides
mydir="$(dirname "$(readlink -f "$0")")"
cd "$mydir/extension"
exec zip -r ../taler-wallet.xpi *
|