copy-backend-into-prebuilt.sh (245B)
1 #!/bin/bash 2 3 [ ! -d prebuilt ] && git worktree add -f prebuilt prebuilt && exit 1 4 5 for file in offer_refund.en.html request_payment.en.html show_order_details.en.html; do 6 cp packages/merchant-backend-ui/dist/pages/$file prebuilt/backend/ 7 done 8