Skip to content

Commit

Permalink
Merge pull request #93 from dwyl/fix-#92
Browse files Browse the repository at this point in the history
[PR] Adding " to scope section
  • Loading branch information
nelsonic authored Apr 26, 2023
2 parents 158a3b3 + af46a92 commit efba82a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,11 @@ Once you know the scope(s) your App needs access to,
simply define them using an environment variable, e.g:

```
GOOGLE_SCOPE=email contacts photoslibrary
GOOGLE_SCOPE="email contacts photoslibrary"
```

Those double-quotes (`"`) encapsulating the environment variable `String` are important.
Without them your system will only assign the first word to the `GOOGLE_SCOPE`.
e.g: `email` and ignore the remaining scopes you need.
***or*** you can set them as a config variable if you prefer:

```
Expand Down

0 comments on commit efba82a

Please sign in to comment.