We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e1d2cc commit 60c8937Copy full SHA for 60c8937
1 file changed
Makefile
@@ -1,6 +1,10 @@
1
install:
2
- git config --local core.hooksPath .githooks/
3
- chmod -R +x .githooks
+ @git config --local core.hooksPath .githooks/
+# This must be indented like this, otherwise it will not work on Windows
4
+# see: https://stackoverflow.com/questions/77974076/how-do-i-fix-this-error-when-checking-os-in-makefile
5
+ifneq ($(OS),Windows_NT)
6
+ @chmod -R +x .githooks
7
+endif
8
@poetry install
9
10
shell:
0 commit comments