You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ "$$BUILD_EXTENSIONS"="True" ];thencd server/custom_kernels && python setup.py install;elseecho"Custom kernels are disabled, you need to set the BUILD_EXTENSIONS environment variable to 'True' in order to build them. (Please read the docs, kernels might not work on all hardware)";fi
19
-
26
+
if [ "$$BUILD_EXTENSIONS"="True" ];then \
27
+
cd server/custom_kernels &&\
28
+
python setup.py install;\
29
+
else\
30
+
echo"Custom kernels are disabled, you need to set the BUILD_EXTENSIONS environment variable to 'True' in order to build them. (Please read the docs, kernels might not work on all hardware)";\
31
+
fi
32
+
33
+
.PHONY: install-router
20
34
install-router:
21
35
cd router && cargo install --path .
22
36
37
+
.PHONY: install-launcher
23
38
install-launcher:
24
39
cd launcher && env GIT_COMMIT_HASH=$(GIT_COMMIT_HASH) cargo install --path .
0 commit comments