File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -44,11 +44,13 @@ build: aw-core/.git
44
44
# needed due to https://github.com/pypa/setuptools/issues/1963
45
45
# would ordinarily be specified in pyproject.toml, but is not respected due to https://github.com/pypa/setuptools/issues/1963
46
46
pip install 'setuptools>49.1.1'
47
- @if (which cargo); then \
48
- echo 'Rust found!'; \
49
- else \
50
- echo 'ERROR: Rust not found, try running with SKIP_SERVER_RUST=true'; \
51
- exit 1; \
47
+ @if [ "$(SKIP_SERVER_RUST)" = "false" ]; then \
48
+ if (which cargo); then \
49
+ echo 'Rust found!'; \
50
+ else \
51
+ echo 'ERROR: Rust not found, try running with SKIP_SERVER_RUST=true'; \
52
+ exit 1; \
53
+ fi \
52
54
fi
53
55
for module in $(SUBMODULES); do \
54
56
echo "Building $$module"; \
You can’t perform that action at this time.
0 commit comments