blob: 3fd4ec5c5bd65d3cc8c37ef09294fbaed8f062eb (
plain)
1
2
3
4
5
6
7
8
|
#!/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
|