Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Remove Credentials from Source. Add Shared Drive Usage. #659

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Repo Source
  • Loading branch information
Msameim181 committed Nov 7, 2022
commit b375cac9fb8f92e15bfb535503b44acf1faf42f2
2 changes: 1 addition & 1 deletion Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Version 1.5 or higher.
brew install gdrive
```
### Other
Download `gdrive` from one of the [links in the latest release](https://github.com/prasmussen/gdrive/releases).
Download `gdrive` from one of the [links in the latest release](https://github.com/Msameim181/gdrive/releases).
The first time gdrive is launched (i.e. run `gdrive about` in your
terminal not just `gdrive`), you will be prompted for a verification code.
The code is obtained by following the printed url and authenticating with the
Expand All @@ -34,7 +34,7 @@ You will be prompted for a new verification code if the folder does not exist.

## Compile from source
```bash
go get github.com/prasmussen/gdrive
go get github.com/Msameim181/gdrive
```
The gdrive binary should now be available at `$GOPATH/bin/gdrive`

Expand Down
2 changes: 1 addition & 1 deletion compare.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"encoding/json"
"github.com/prasmussen/gdrive/drive"
"github.com/Msameim181/gdrive/drive"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion gdrive.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/prasmussen/gdrive/cli"
"github.com/Msameim181/gdrive/cli"
)

const Name = "gdrive"
Expand Down
6 changes: 3 additions & 3 deletions handlers_drive.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"path/filepath"
"time"

"github.com/prasmussen/gdrive/auth"
"github.com/prasmussen/gdrive/cli"
"github.com/prasmussen/gdrive/drive"
"github.com/Msameim181/gdrive/auth"
"github.com/Msameim181/gdrive/cli"
"github.com/Msameim181/gdrive/drive"
)

const ClientId = "367116221053-7n0vf5akeru7on6o2fjinrecpdoe99eg.apps.googleusercontent.com"
Expand Down
2 changes: 1 addition & 1 deletion handlers_meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

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