You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I can tell, due to the way Flightplan is using Rsync, old files will not be removed from the server.
I.e., if I deploy some files to a server, then remove some files locally, and re-deploy, the files that have been deleted locally will remain on the server.
This is because of a couple of reasons, firstly that the Rsync flag --delete isn't being used. But more importantly, and fundamentally, even if it was it wouldn't remove them because --from-file is being used, which means Rsync will ignore deleted files.
I'm not sure that Flightplan claims to sync files, just to upload them, so this feels more like an enhancement.
Solving this ticket would help sort this issue out: #71
The text was updated successfully, but these errors were encountered:
Koded
changed the title
Remove old files.
Remove old files
Oct 21, 2015
As far as I can tell, due to the way Flightplan is using Rsync, old files will not be removed from the server.
I.e., if I deploy some files to a server, then remove some files locally, and re-deploy, the files that have been deleted locally will remain on the server.
This is because of a couple of reasons, firstly that the Rsync flag
--delete
isn't being used. But more importantly, and fundamentally, even if it was it wouldn't remove them because--from-file
is being used, which means Rsync will ignore deleted files.I'm not sure that Flightplan claims to sync files, just to upload them, so this feels more like an enhancement.
Solving this ticket would help sort this issue out: #71
The text was updated successfully, but these errors were encountered: