diff options
Diffstat (limited to 'python/mach_bootstrap.py')
-rw-r--r-- | python/mach_bootstrap.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/python/mach_bootstrap.py b/python/mach_bootstrap.py index 2e36b0cefc0..19b1ad666e8 100644 --- a/python/mach_bootstrap.py +++ b/python/mach_bootstrap.py @@ -11,18 +11,18 @@ import sys from distutils.spawn import find_executable SEARCH_PATHS = [ - "python/mach", - "tests/wpt", - "tests/wpt/harness", + os.path.join("python", "mach"), + os.path.join("tests", "wpt"), + os.path.join("tests", "wpt", "harness"), ] # Individual files providing mach commands. MACH_MODULES = [ - 'python/servo/bootstrap_commands.py', - 'python/servo/build_commands.py', - 'python/servo/testing_commands.py', - 'python/servo/post_build_commands.py', - 'python/servo/devenv_commands.py', + os.path.join('python', 'servo', 'bootstrap_commands.py'), + os.path.join('python', 'servo', 'build_commands.py'), + os.path.join('python', 'servo', 'testing_commands.py'), + os.path.join('python', 'servo', 'post_build_commands.py'), + os.path.join('python', 'servo', 'devenv_commands.py'), ] |