9 lines
350 B
Bash
9 lines
350 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
[ ! -d prebuilt ] && echo 'directory "prebuilt" not found. first checkout the prebuilt branch into a prebuilt directory' && 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
|
||
|
|