I'm running Windows 10, and the server is on Debian 10 and I'm copying a Svelte build directory from my computer to a remote server. I'm using the command to copy the files:
scp -r ./build user@remote.host:~/directory
But there are some files (and entire directories) consistently left out and I end up having to go through and manually copying them over.
Remote directory.
Local directory; the entire (play) directory is dropped.
I tried running it with the verbose argument, but it didn't tell me anything special (I think). Why is it doing this, and how can I prevent it?

