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

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

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