From c5d772212e1f61322ff8e440b8238834310f639c Mon Sep 17 00:00:00 2001 From: Akhtar Zaman Date: Thu, 14 May 2020 16:41:35 -0400 Subject: [PATCH] Added a $ sign front of sudo chown command! as a beginner in I was confused as to how this worked and first few times the sudo chown didn't work until I added $ sign front of staff. --- docs/days/day-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/days/day-1.md b/docs/days/day-1.md index 1d67b41..0acd438 100644 --- a/docs/days/day-1.md +++ b/docs/days/day-1.md @@ -63,7 +63,7 @@ After that create Symfony project in `tmp` _(temporary)_ folder, copy it to your composer create-project symfony/website-skeleton:4.2.* /tmp/jobeet/ cp -aR /tmp/jobeet/. . exit; -sudo chown -R $USER:$USER . # if you're on a Mac, use $USER:staff instead +sudo chown -R $USER:$USER . # if you're on a Mac, use $USER:$staff instead ``` We install into `tmp` directory and copy then to proper one, because `create-project` command requires target folder to be empty, but in project’s folder we already have docker files.