blob: 5e04c1a06727b31d7ba41a5a68b42c8daedcba5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
[ ! -d prebuilt ] && git worktree add -f prebuilt prebuilt && exit 1
rm -f prebuilt/backoffice/*
find packages/merchant-backoffice-ui/dist/prod/ -type f -printf '%P\n' | sort > prebuilt/backoffice/bof
while IFS= read -r file; do
cp packages/merchant-backoffice-ui/dist/prod/$file prebuilt/backoffice/$file
done < prebuilt/backoffice/bof
|