mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
fix(tools): update Makefile targets to allow make binary path with spaces
- avoids issues if the make binary path contains spaces
This commit is contained in:
4
Makefile
4
Makefile
@@ -30,7 +30,7 @@ check_strip_nb:
|
||||
.PHONY: strip_nb
|
||||
|
||||
pylint:
|
||||
+poetry run env bash script/make_utils/serialize_targets.sh $(MAKE) \
|
||||
+poetry run env bash script/make_utils/serialize_targets.sh "$(MAKE)" \
|
||||
pylint_src pylint_tests pylint_benchmarks
|
||||
.PHONY: pylint
|
||||
|
||||
@@ -94,7 +94,7 @@ mypy_benchmark:
|
||||
# the parent make execution. We serialize calls to these targets as they may overwrite each others
|
||||
# cache which can cause issues.
|
||||
mypy_ci:
|
||||
+poetry run env bash script/make_utils/serialize_targets.sh $(MAKE) \
|
||||
+poetry run env bash script/make_utils/serialize_targets.sh "$(MAKE)" \
|
||||
mypy mypy_test mypy_benchmark
|
||||
.PHONY: mypy_ci
|
||||
|
||||
|
||||
Reference in New Issue
Block a user