I use vinyl ftp to deploy my project on remote server. No problem to upload files but i would also like to delete files that aren't anymore in local folder.
Example :
Local folder
./
fileA
fileB
fileC
Remote folder :
./
fileB
fileC
fileD
What i have in remote folder for the moment after deploy :
./
fileA
fileB
fileC
fileD
What i would like (exactly same as local folder) :
./
fileA
fileB
fileC
I could use rmdir to delete all files but that implies to reupload all files for each deploy.
Thank you