Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrad Warren <bmw@users.noreply.github.com>2017-06-06 01:20:04 +0300
committerGitHub <noreply@github.com>2017-06-06 01:20:04 +0300
commit0e4f55982acf173c3511e7b3aac04d2986f893e7 (patch)
treec771c2c5cf0f9ca7f4b83770377b5b311c90955b /tests
parent6ee934b667e124925029c0ef83de30d1302c5bc9 (diff)
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.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/boulder-integration.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/boulder-integration.sh b/tests/boulder-integration.sh
index 5c00be054..ddbaa43ed 100755
--- a/tests/boulder-integration.sh
+++ b/tests/boulder-integration.sh
@@ -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=`