Hi,
I'm trying to use `clasp run abc` to run a GAS function from the command line. I've created a completely new project with only one file `Code.js` with one function in it:
```
function abc() {
return "def"
}
```
Note that I'm already globally logged in to push/pull using clasp.
I've cloned the new project and am trying to run my function using `clasp run abc`, and getting a message telling me that I'm not authenticated for the scopes required by the script. However, when I check the properties of my project, the list of OAuth scopes is empty, so I have no idea what's missing to run this simplistic function.
Can anyone point me in the right direction?
Thanks!
David