Skip to content

Commit cab4204

Browse files
committed
Fix checking e3 Python module
1 parent abbdd3c commit cab4204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ vscode-package:
160160
check: all
161161
set -e; \
162162
export PYTHON=$(PYTHON); \
163-
if [ `$(PYTHON) -c "import sys;print('e3' in sys.modules)"` = "True" ]; then\
163+
if [ `$(PYTHON) -c "import e3,sys;print('e3' in sys.modules)"` = "True" ]; then\
164164
(cd testsuite ; sh run.sh $(test)) ; \
165165
else \
166166
for a in testsuite/*_lsp/*/*.json; do \

0 commit comments

Comments
 (0)