From 79e888a755e08f5143b3cc3493848cec88de401e Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sat, 8 Oct 2016 20:29:09 +0000 Subject: [PATCH] Fix bug in handling of ghostdriver log path. - Legacy-Id: 12109 --- bin/setupenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/setupenv b/bin/setupenv index 5745a7b2c..d63fd8f43 100755 --- a/bin/setupenv +++ b/bin/setupenv @@ -18,7 +18,7 @@ from ietf.settings_sqlitetest import * # we don't import from django for dir in [ AGENDA_PATH, IDSUBMIT_REPOSITORY_PATH, IDSUBMIT_STAGING_PATH, INTERNET_DRAFT_ARCHIVE_DIR, os.path.dirname(DRAFT_ALIASES_PATH), PHOTOS_DIR, - TEST_GHOSTDRIVER_LOG_PATH, ]: + os.path.dirname(os.path.abspath(TEST_GHOSTDRIVER_LOG_PATH)), ]: if not os.path.exists(dir): print("Creating %s" % dir) os.makedirs(dir)