google / skicka

Command-line utility for working with Google Drive. Join the mailing list at https://groups.google.com/forum/#!forum/skicka-users.
Apache License 2.0
1.3k stars 118 forks source link

Skicka download fails with chmod "not supported by windows" #77

Closed bgrainger closed 9 years ago

bgrainger commented 9 years ago

skicka download fails after building the list of files to download. The error message that is printed is Chmod (path): not supported by windows.

bgrainger commented 9 years ago

Here's the problem in the golang src: https://github.com/golang/go/blob/e77fbd598faeffd9231c8ecd6e2c2f42312c717e/src/syscall/syscall_windows.go#L960

We should be able to work around it by calling os.Chmod instead of File.Chmod; any objections to doing that on all platforms?