Skip to content

Commit 83eecfb

Browse files
committed
expand the relative path for envdir to the full path
tox is passing a relative directory, but the script wants a full path in some cases.
1 parent 4b94dbb commit 83eecfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/run_tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- mode: shell-script -*-
22
#set -x
33

4-
envdir="$1"
4+
envdir="$(cd $1 && pwd)"
55
shift
66
scripts="$*"
77
if [ -z "$scripts" ]

0 commit comments

Comments
 (0)