diff options
| -rw-r--r-- | README.md | 15 | ||||
| -rw-r--r-- | drive/sync.go | 2 | 
2 files changed, 6 insertions, 11 deletions
| @@ -2,12 +2,13 @@ gdrive  ====== -## Important -This tool is no longer maintained. -  ## Overview  gdrive is a command line utility for interacting with Google Drive. +## News +#### 28.05.2021 +gdrive is finally verified for using sensitive scopes which should fix the `This app is blocked` error. +  ## Prerequisites  None, binaries are statically linked.  If you want to compile from source you need the [go toolchain](http://golang.org/doc/install). @@ -39,14 +40,8 @@ go get github.com/prasmussen/gdrive  The gdrive binary should now be available at `$GOPATH/bin/gdrive` -## Gdrive 2 -Gdrive 2 is more or less a full rewrite and is not backwards compatible -with gdrive 1 as all the command line arguments has changed slightly. -Gdrive 2 uses version 3 of the google drive api and my google-api-go-client -fork is no longer needed. -  ### Syncing -Gdrive 2 supports basic syncing. It only syncs one way at the time and works +Gdrive supports basic syncing. It only syncs one way at the time and works  more like rsync than e.g. dropbox. Files that are synced to google drive  are tagged with an appProperty so that the files on drive can be traversed  faster. This means that you can't upload files with `gdrive upload` into diff --git a/drive/sync.go b/drive/sync.go index 35ab16e..4b2d08b 100644 --- a/drive/sync.go +++ b/drive/sync.go @@ -2,7 +2,7 @@ package drive  import (  	"fmt" -	"github.com/sabhiram/go-git-ignore" +	"github.com/sabhiram/go-gitignore"  	"github.com/soniakeys/graph"  	"google.golang.org/api/drive/v3"  	"google.golang.org/api/googleapi" | 
