diff options
-rwxr-xr-x | bin/just-mr.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/just-mr.py b/bin/just-mr.py index f010fec9..2c2a08b3 100755 --- a/bin/just-mr.py +++ b/bin/just-mr.py @@ -495,6 +495,7 @@ def main(): config = read_config(options.repository_config) global ROOT ROOT = options.local_build_root or os.path.join(Path.home(), ".cache/just") + ROOT = ROOT if os.path.isabs(ROOT) else os.path.abspath(ROOT) global GIT_CHECKOUT_LOCATIONS if options.checkout_location: with open(options.checkout_location) as f: |