mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
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:
parent
6ee934b667
commit
0e4f55982a
1 changed files with 0 additions and 6 deletions
|
|
@ -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=`
|
||||
|
|
|
|||
Loading…
Reference in a new issue