wallet-core/copy-demobank-into-prebuilt.sh

9 lines
276 B
Bash
Raw Normal View History

2023-03-02 18:43:08 +01:00
#!/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
2023-03-02 18:43:08 +01:00
cp packages/demobank-ui/dist/$file prebuilt/demobank/
done