iwonbigbro/gsync

first time sync from google drive using checksum does not skip existing local files, second time sync seems to skip existing local files

Opened this issue · 1 comments

Using a wordpress directory as a sample:

$ python --version
Python 2.7.6
$ gsync --version
0.1.14

# grab and extract latest wordpress
cd /tmp/
wget http://wordpress.org/latest.tar.gz
tar -xzvf latest.tar.gz

# sync *up* to google drive 
gsync --progress -rci /tmp/wordpress/ drive://wordpress/

# now try grabbing it back - seems to download *everything* again
gsync --progress -rci drive://wordpress/ /tmp/wordpress

# now try grabbing it again - this time, nothing is downloaded
gsync --progress -rci drive://wordpress/ /tmp/wordpress

For Python 2.7.3 on dreamhost it's worse - it never recognizes local files as existing, and always grabs everything:

$ python --version
Python 2.7.3
$ gsync --version
0.1.14