Just started using GCloud Functions
today, and I am having a problem.
I've updated one of my projects to be function-ready and used google's local-emulator
(@google-cloud/functions-emulator) to debug and test my new function.
Everything went well and emulator deployment went just fine.
```
$ functions deploy doThing --trigger-http --timeout=540s
Copying file:///var/folders/nw/.../T/us-central1-doThing-....zip...
Waiting for operation to finish...done.
Deploying function.......done.
Function doThing deployed.
```
But when i try to do the same thing using the actual gcloud beta functions
I get a build error without any reason or obvious way to debug it:
```
$ gcloud beta functions deploy doThing --stage-bucket test-bucket --trigger-http --timeout=360s
Copying file:///var/folders/nw/.../T/tmpUJvuxd/fun.zip [Content-Type=application/zip]...
| [1 files][ 7.5 MiB/ 7.5 MiB]
Operation completed over 1 objects/7.5 MiB.
Deploying function (may take a while - up to 2 minutes)...failed.
ERROR: (gcloud.beta.functions.deploy) OperationError: code=13, message=Error in the build environment
```
In the GClould logs I'm not getting any other details either ==> https://pastebin.com/6H7DRkE8
How can I debug this deployment issue?