tools/tox-venv: remove unnecessary redirection

This commit is contained in:
Scott Moser 2015-03-24 20:19:23 -04:00
parent 53cbb45d03
commit d47f08931c
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ activate="$tox_d/$env/bin/activate"
[ -d "$tox_d" ] || fail "$tox_d: not a dir. maybe run 'tox'?"
if [ ! -f "$activate" ]; then
error "$env: not a valid tox environment?" 1>&1
error "$env: not a valid tox environment?"
error "try one of:"
( cd "$tox_d" &&
for d in *; do [ -f "$d/bin/activate" ] && error " $d"; done )