Skip to content

Commit

Permalink
Make go get work
Browse files Browse the repository at this point in the history
Make `go get` work
  • Loading branch information
DirkyJerky committed Feb 27, 2016
1 parent 677d980 commit 4961723
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion compare.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"./drive"
"github.com/prasmussen/gdrive/drive"
"encoding/json"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion gdrive.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"./cli"
"github.com/prasmussen/gdrive/cli"
"fmt"
"os"
)
Expand Down
6 changes: 3 additions & 3 deletions handlers_drive.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion handlers_meta.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"./cli"
"github.com/prasmussen/gdrive/cli"
"fmt"
"os"
"runtime"
Expand Down

0 comments on commit 4961723

Please sign in to comment.