Remove unused readlink environment variable. (#4781)

The program readlink used to be used in integration tests so an environment
variable was used to handle differences in the executable on different systems.
This command is no longer used though so the variable can be removed.
This commit is contained in:
Brad Warren 2017-06-05 15:20:04 -07:00 committed by GitHub
parent 6ee934b667
commit 0e4f55982a

View file

@ -13,12 +13,6 @@ set -eux
. ./tests/integration/_common.sh
export PATH="$PATH:/usr/sbin" # /usr/sbin/nginx
if [ `uname` = "Darwin" ];then
readlink="greadlink"
else
readlink="readlink"
fi
cleanup_and_exit() {
EXIT_STATUS=$?
if SERVER_STILL_RUNNING=`ps -p $python_server_pid -o pid=`