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
Currently, when you run this gem, it doesn't clean up old assets from public/packs on start of run, and all of its contents get rsync-ed. This can mean accidentally syncing over a GB of data if the folder hasn't been cleaned in a while.
The problem comes from this: at start of run, rake assets:cleanis called, which doesn't clear packs dir, but the rm -rflater on does.
The text was updated successfully, but these errors were encountered:
Currently, when you run this gem, it doesn't clean up old assets from
public/packs
on start of run, and all of its contents get rsync-ed. This can mean accidentally syncing over a GB of data if the folder hasn't been cleaned in a while.The problem comes from this: at start of run,
rake assets:clean
is called, which doesn't clear packs dir, but therm -rf
later on does.The text was updated successfully, but these errors were encountered: