From 119985f3532081b82796459cedb685ce9bcd8230 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Sun, 23 Feb 2020 14:58:45 -0800 Subject: [PATCH] Use the current directory you are running. --- litex_setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/litex_setup.py b/litex_setup.py index ff2777bfa..c6389ad66 100755 --- a/litex_setup.py +++ b/litex_setup.py @@ -8,7 +8,8 @@ from collections import OrderedDict import urllib.request -current_path = os.path.dirname(os.path.realpath(__file__)) +current_path = os.path.abspath(os.curdir) + # Repositories -------------------------------------------------------------------------------------