9 lines
276 B
Bash
Executable File
9 lines
276 B
Bash
Executable File
#!/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 logo-white-U55BSKA2.svg; do
|
|
cp packages/demobank-ui/dist/$file prebuilt/demobank/
|
|
done
|
|
|