9 lines
252 B
Bash
9 lines
252 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 index.html index.js index.css; do
|
||
|
cp packages/demobank-ui/dist/$file prebuilt/demobank/
|
||
|
done
|
||
|
|