Skip to content

Commit

Permalink
Makefile: Avoid executing the hint (#3564)
Browse files Browse the repository at this point in the history
Backticks execute the command even when they are in quotes.
  • Loading branch information
akshaymankar authored Sep 6, 2023
1 parent e859176 commit c5a3f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c5a3f5c

Please sign in to comment.