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

9 lines
252 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; do
cp packages/demobank-ui/dist/$file prebuilt/demobank/
done