2017-10-30 16:10:27 +00:00
|
|
|
#!/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
|
2017-11-01 15:54:02 +00:00
|
|
|
cp static_langing_page/welcome-dev.html resources/templates/welcome-dev.html
|
2017-10-30 16:10:27 +00:00
|
|
|
cp -r static_langing_page/dest/ resources/public/dest/
|
|
|
|
cp -r static_langing_page/assets/ resources/public/assets/
|