summaryrefslogtreecommitdiff
path: root/tools/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/util.py')
-rw-r--r--tools/util.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/util.py b/tools/util.py
index 89b288a11..5711f737a 100644
--- a/tools/util.py
+++ b/tools/util.py
@@ -18,8 +18,10 @@ else:
FG_GREEN = "\x1b[32m"
executable_suffix = ".exe" if os.name == "nt" else ""
+
root_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
tests_path = os.path.join(root_path, "tests")
+third_party_path = os.path.join(root_path, "third_party")
def make_env(merge_env=None, env=None):