mirror of
https://github.com/status-im/open-bounty.git
synced 2025-01-09 09:12:07 +00:00
10 lines
397 B
Bash
Executable File
10 lines
397 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# TODO: Gulp etc pipeline, for now just HTML tweaks
|
|
|
|
echo "Copying index.html, dest, and assets to resources/{templates,public}."
|
|
cp static_langing_page/index.html resources/templates/index.html
|
|
cp static_langing_page/welcome.html resources/templates/welcome.html
|
|
cp -r static_langing_page/dest/ resources/public/dest/
|
|
cp -r static_langing_page/assets/ resources/public/assets/
|