I am trying to create and publish python package in Gemfury using CircleCI. But at the end the system shows message:
“Exited with code exit status 13”
“CircleCI received exit code 13”
So what does it mean?
The code will be the number returned by the application/command run, by the CircleCI script.
As I do not know your exact workflow I can not say what returned the error code or what the code maps to. I can give an example. A basic Python application could cause an Errno of 13 to be returned if the file permissions on a file it was trying to access were not correct.
Thank you very much!!! Yeah the problem was permissions!
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.