3

enter image description here

When I try to run my gitlab-ci.yml, I got this error ? Has anyone have any idea? Thank you

Nawin Poolsawad
  • 227
  • 2
  • 13

1 Answers1

0

The Error: mkdir command fails. mkdir is a Linux/iOS command that creates a new directory.

When it throws the error:

Permission denied

it tells that the user running that command (the user executing the script or running the process) has no rights to create a directory in

/Users/nawinpoolsawad/builds/pxKER6-V/0/bitnance-exchange/exchange-ios.tmp

To fix the issue, change permission of the directory /Users/nawinpoolsawad/builds/pxKER6-V/0/bitnance-exchange/ and its parents or execute that application/script with another user (eg root).

Jonathan
  • 1,955
  • 5
  • 30
  • 50