Merge pull request #1216 from bluhm/sh-source

Use . instead of source shell command.
This commit is contained in:
Guillaume Valadon 2018-03-08 08:40:45 +01:00 committed by GitHub
commit f61f98f807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
#! /bin/sh
PYTHON=python2
source $(dirname $0)/run_tests "$@"
. $(dirname $0)/run_tests "$@"

View File

@ -1,3 +1,3 @@
#! /bin/sh
PYTHON=python3
source $(dirname $0)/run_tests "$@"
. $(dirname $0)/run_tests "$@"