From 8ebbaf1413b374187fd27112344b9ba5239199ce Mon Sep 17 00:00:00 2001 From: wira <2055479+wira@users.noreply.github.com> Date: Thu, 1 Dec 2022 07:34:49 +0000 Subject: [PATCH] docs: use correct .PHONY syntax with colon (:) --- docs/makefile.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/makefile.md b/docs/makefile.md index 83792c4..625077c 100644 --- a/docs/makefile.md +++ b/docs/makefile.md @@ -29,7 +29,7 @@ And rebuild the PHP image. **PS**: If using Windows, you have to install [chocolatey.org](https://chocolatey.org/) or use [Cygwin](http://cygwin.com) to use the `make` command. Check out this -[StackOverflow question](https://stackoverflow.com/q/2532234/633864) for more explanations. +[StackOverflow question](https://stackoverflow.com/q/2532234/633864) for more explanations. ## The template @@ -47,7 +47,7 @@ SYMFONY = $(PHP_CONT) bin/console # Misc .DEFAULT_GOAL = help -.PHONY = help build up start down logs sh composer vendor sf cc +.PHONY : help build up start down logs sh composer vendor sf cc ## —— 🎵 🐳 The Symfony Docker Makefile 🐳 🎵 —————————————————————————————————— help: ## Outputs this help screen