From c5a3f5c0625840e9108b221eb90d08c408d68d68 Mon Sep 17 00:00:00 2001 From: Akshay Mankar Date: Wed, 6 Sep 2023 11:09:59 +0200 Subject: [PATCH] Makefile: Avoid executing the hint (#3564) Backticks execute the command even when they are in quotes. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d013fde4041..b2706f460a2 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ clean-hint: @echo -e "\n\n\n>>> PSA: if you get errors that are hard to explain," @echo -e ">>> try 'git submodule update --init --recursive' and 'make full-clean' and run your command again." @echo -e ">>> see https://github.com/wireapp/wire-server/blob/develop/docs/developer/building.md#linker-errors-while-compiling" - @echo -e ">>> to never have to remember submodules again, try `git config --global submodule.recurse true`" + @echo -e ">>> to never have to remember submodules again, try 'git config --global submodule.recurse true'" @echo -e "\n\n\n" .PHONY: cabal.project.local