diff options
author | Florian Dold <florian.dold@gmail.com> | 2015-11-25 20:41:31 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2015-11-25 20:46:36 +0100 |
commit | 7b6706bee3cbecc84b330672ecdb5764d7d68756 (patch) | |
tree | 5941b2d8a53296a4e64712068f82717205840a05 /pack |
Add skeleton for WebExtensions wallet
Diffstat (limited to 'pack')
-rwxr-xr-x | pack | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,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 * |