Skip to content

Commit 099c44b

Browse files
authored
Add ability to choose repository when running with DEV=true (#10)
1 parent 2b71c6b commit 099c44b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

base/executor.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ pyenv shell $ETR_PYTHON_VERSION
88
DEV=${DEV:-false}
99
if [ $DEV = "true" ] ; then
1010
ETR_BRANCH=${ETR_BRANCH:-master}
11-
ETR_INSTALL="git+https://github.com/eiffel-community/etos-test-runner.git@$ETR_BRANCH"
11+
ETR_REPOSITORY=${ETR_REPOSITORY:-https://github.com/eiffel-community/etos-test-runner.git}
12+
ETR_INSTALL="git+$ETR_REPOSITORY@$ETR_BRANCH"
1213
else
1314
ETR_INSTALL="etos_test_runner"
1415
fi

0 commit comments

Comments
 (0)