From 0bc5d6438e06212b37aa6504664c0aa6bfa5e758 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 8 Apr 2015 22:22:40 +0800 Subject: [PATCH] Fix generating distribution for chromedriver --- script/lib/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/lib/util.py b/script/lib/util.py index 04ee9817e28d..698da95080a4 100644 --- a/script/lib/util.py +++ b/script/lib/util.py @@ -160,7 +160,7 @@ def get_atom_shell_version(): def get_chromedriver_version(): SOURCE_ROOT = os.path.abspath(os.path.join(__file__, '..', '..', '..')) - chromedriver = os.path.join(SOURCE_ROOT, 'out', 'R', 'chromedriver') + chromedriver = os.path.join(SOURCE_ROOT, 'dist', 'chromedriver') output = subprocess.check_output([chromedriver, '-v']).strip() return 'v' + output[13:output.rfind(' ')]