I'm trying to fix this error when deploying my lambda:
INFO: Writing results to file /opt/atlassian/pipelines/agent/build/.bitbucket/pipelines/generated/pipeline/pipes/aws-lambda-deploy-env
Traceback (most recent call last):
File "/pipe.py", line 268, in <module>
pipe.run()
File "/pipe.py", line 261, in run
self.update_function_code()
File "/pipe.py", line 213, in update_function_code
self.write_update_response_to_file(response)
File "/pipe.py", line 220, in write_update_response_to_file
with open(self.update_response_file_path, 'w') as result_file:
PermissionError: [Errno 13] Permission denied: '/opt/atlassian/pipelines/agent/build/.bitbucket/pipelines/generated/pipeline/pipes/aws-lambda-deploy-env'
I tried to use a documented fix :
rm -rf /opt/atlassian/pipelines/agent/build/.bitbucket/pipelines/generated/pipeline/pipes/aws-lambda-deploy-env
but it didn't work on my side
Fixed by changing the rm command with :
rm -rf /opt/atlassian/pipelines/agent/build/.bitbucket/pipelines/generated/pipeline/pipes/
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.