diff options
| -rw-r--r-- | README.md | 5 | ||||
| -rw-r--r-- | compare.go | 2 | ||||
| -rw-r--r-- | gdrive.go | 2 | ||||
| -rw-r--r-- | handlers_drive.go | 6 | ||||
| -rw-r--r-- | handlers_meta.go | 2 | 
5 files changed, 7 insertions, 10 deletions
| @@ -55,10 +55,7 @@ You will be prompted for a new verification code if the folder does not exist.  ## Compile from source  ```bash -git clone https://github.com/prasmussen/gdrive.git -cd gdrive -go get ./... -go build -o gdrive +go get github.com/prasmussen/gdrive  ```  ## Gdrive 2 @@ -1,7 +1,7 @@  package main  import ( -	"./drive" +	"github.com/prasmussen/gdrive/drive"  	"encoding/json"  	"os"  ) @@ -1,7 +1,7 @@  package main  import ( -	"./cli" +	"github.com/prasmussen/gdrive/cli"  	"fmt"  	"os"  ) diff --git a/handlers_drive.go b/handlers_drive.go index baaf050..f0386ce 100644 --- a/handlers_drive.go +++ b/handlers_drive.go @@ -1,9 +1,9 @@  package main  import ( -	"./auth" -	"./cli" -	"./drive" +	"github.com/prasmussen/gdrive/auth" +	"github.com/prasmussen/gdrive/cli" +	"github.com/prasmussen/gdrive/drive"  	"fmt"  	"io"  	"io/ioutil" diff --git a/handlers_meta.go b/handlers_meta.go index 72e3dd0..bfd5b8f 100644 --- a/handlers_meta.go +++ b/handlers_meta.go @@ -1,7 +1,7 @@  package main  import ( -	"./cli" +	"github.com/prasmussen/gdrive/cli"  	"fmt"  	"os"  	"runtime" | 
