summaryrefslogtreecommitdiff
path: root/copy-demobank-into-prebuilt.sh
blob: 5927eac9653b569ae3198f6e60df11d5712edaa6 (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; do
	cp packages/demobank-ui/dist/$file prebuilt/demobank/
done