Closed jpayne-procella closed 1 year ago
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).
View this failed invocation of the CLA check for more information.
For the most up to date status, view the checks section at the bottom of the pull request.
We took your fix in a slightly different way! Thank you for your help!
This PR fixes 2 problems I ran into when trying to run this project.
The first one is a simple order of operations. /root/.android doesn't exist in the container until clean_up is called. However, initialize_data_part tries place a softlink in that directory, resulting in this error:
Switching the order of clean_up then initialize_data_part solves this.
The second one was more frustrating. Using the examples to utilize TURN was failing because var_append wasn't handling 'printf JSON_BLOB' and instead exec was just receiving 'printf':
Fixed this by switching to bash to allow bash arrays, changing var_append to construct an array, and switching the call to exec to use the array.
I just submitted a CLA - hopefully that gets processed in time to accept this PR.
Thanks! John Payne Procella Technologies