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-envTraceback (most recent call last):File "/pipe.py", line 268, in <module>pipe.run()File "/pipe.py", line 261, in runself.update_function_code()File "/pipe.py", line 213, in update_function_codeself.write_update_response_to_file(response)File "/pipe.py", line 220, in write_update_response_to_filewith 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 sideFixed by changing the rm command with :
rm -rf /opt/atlassian/pipelines/agent/build/.bitbucket/pipelines/generated/pipeline/pipes/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.