From: Tim 'mithro' Ansell Date: Sun, 23 Feb 2020 22:58:45 +0000 (-0800) Subject: Use the current directory you are running. X-Git-Tag: 24jan2021_ls180~424^2~10 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=119985f3532081b82796459cedb685ce9bcd8230;p=litex.git Use the current directory you are running. --- diff --git a/litex_setup.py b/litex_setup.py index ff2777bf..c6389ad6 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 -------------------------------------------------------------------------------------