summaryrefslogtreecommitdiff
path: root/contrib/copy-backend-into-prebuilt.sh
blob: 81d38cdea1957abff957ab7bf23737225872cf0a (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

[ ! -d prebuilt ] && git worktree add -f prebuilt prebuilt && exit 1

for file in offer_refund.en.html request_payment.en.html show_order_details.en.html; do
	cp packages/merchant-backend-ui/dist/pages/$file prebuilt/backend/
done