0

I want to push my Symfony 2.8 Project on my Host. But when I execute

 cap deploy:setup

I get this error:

failed: "sh -c 'mkdir -p /test/ /test/releases /test/shared'" on 
   ftp.cluster003.hosting.ovh.net

Do you have any answers for this problem ?

Benjamin W.
  • 46,058
  • 19
  • 106
  • 116

1 Answers1

0

The target directory (/test/*) needs to be writable by the user executing the cap command.

you need to create it with sudo mkdir /test first.

mblaettermann
  • 1,916
  • 2
  • 17
  • 23