2021-06-16 21:17:00 +02:00
|
|
|
#!/usr/bin/env bash
|
2021-06-16 21:19:27 +02:00
|
|
|
# This file is in the public domain.
|
2021-07-08 20:23:53 +02:00
|
|
|
[ "also-wallet" == "$1" ] && { pnpm -C ../taler-wallet-core/ compile || exit 1; }
|
2021-06-16 21:17:00 +02:00
|
|
|
pnpm clean && pnpm compile && rm -rf extension/ && ./pack.sh && (cd extension/ && unzip taler*.zip)
|
|
|
|
|