Skip to content

Commit c0bc0ae

Browse files
InterLinked1Friendly Automation
authored and
Friendly Automation
committed
runInVenv: Remove output redirection.
runInVenv.sh calls setupVenv.sh and redirects all output to /dev/null, which means if an error occurs we will never know about it. This removes stderr redirection so the user will know what went wrong. ASTERISK-30206 #close Change-Id: I79b32c5374d142688ef4fa26990628aa9c3fcf36
1 parent 0d6e96e commit c0bc0ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runInVenv.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fi
1616
if [ $REINSTALL -eq 1 ] ; then
1717
echo "Reinstall required, removing and recreating venv"
1818
rm -rf .venv
19-
./setupVenv.sh > /dev/null 2>&1
19+
./setupVenv.sh > /dev/null
2020

2121
fi
2222

0 commit comments

Comments
 (0)