Hi everyone,
My build process creates a bunch of files under a build directory, like this
PROJECT_ROOT /build /index.html /static /build.js
I'm currently selecting "build/" with the copy pattern "**"
In my final build phase I have a scp job to copy the artifact into
~/public_html/
What I really want is for index.html to end up directly within the public_html dir, but in reality, I end up with
~/public_html/build/index.html
How do I fix this?
Thanks in advance