13 lines
198 B
Bash
Executable File
13 lines
198 B
Bash
Executable File
#!/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 *
|