wallet-core/contrib/copy-backend-into-prebuilt.sh

9 lines
288 B
Bash
Raw Normal View History

2023-02-24 00:06:14 +01:00
#!/bin/bash
2023-09-14 17:16:48 +02:00
[ ! -d prebuilt ] && git worktree add -f prebuilt prebuilt && exit 1
2023-02-24 00:06:14 +01:00
for file in depleted_tip.en.html offer_refund.en.html offer_tip.en.html request_payment.en.html show_order_details.en.html; do
cp packages/merchant-backend-ui/dist/pages/$file prebuilt/backend/
done