add bill of materials to prebuilt
This commit is contained in:
parent
fdd5633530
commit
d61471544c
@ -2,5 +2,9 @@
|
||||
|
||||
[ ! -d prebuilt ] && echo 'directory "prebuilt" not found. first checkout the prebuilt branch into a prebuilt directory' && exit 1
|
||||
|
||||
cp packages/merchant-backoffice-ui/dist/{index,material*,XRXV*}.* prebuilt/backoffice/
|
||||
cp packages/merchant-backoffice-ui/dist/*.svg 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
|
||||
|
||||
|
@ -2,7 +2,9 @@
|
||||
|
||||
[ ! -d prebuilt ] && echo 'directory "prebuilt" not found. first checkout the prebuilt branch into a prebuilt directory' && exit 1
|
||||
|
||||
for file in index.html index.js index.css logo-white-U55BSKA2.svg; do
|
||||
cp packages/demobank-ui/dist/$file prebuilt/demobank/
|
||||
done
|
||||
find packages/demobank-ui/dist/prod/ -type f -printf '%P\n' | sort > prebuilt/demobank/bof
|
||||
|
||||
while IFS= read -r file; do
|
||||
cp packages/demobank-ui/dist/prod/$file prebuilt/demobank/$file
|
||||
done < prebuilt/demobank/bof
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user