Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Commit 3fff437

Browse files
committed
Fix make test on Debian / Ubuntu
Debian and Debian-based distros has dash as /bin/sh implementation (whereas it seems that all other distros just use bash), so we need to use Bourne Shell compliant `.` command to source a file. Thanks Alexey Khatskevich (@Khatskevich) to pointing it out!
1 parent a117301 commit 3fff437

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
@@ -8,7 +8,7 @@ lint:
88
.PHONY: test
99
test: lint
1010
virtualenv -p python2.7 ./.env-2.7
11-
source ./.env-2.7/bin/activate && \
11+
. ./.env-2.7/bin/activate && \
1212
pip install -r ./test-run/requirements.txt && \
1313
pip install tarantool && \
1414
cd test && ./test-run.py

0 commit comments

Comments
 (0)