From 7267a4ab2bb3289a0fea0c7f14520c4d67fa194d Mon Sep 17 00:00:00 2001 From: Oliver Reiche Date: Fri, 21 Oct 2022 13:33:48 +0200 Subject: just-mr: Fix use of wrong file path for checkout locations --- bin/just-mr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/just-mr.py') diff --git a/bin/just-mr.py b/bin/just-mr.py index 1599826c..c641426c 100755 --- a/bin/just-mr.py +++ b/bin/just-mr.py @@ -1035,7 +1035,7 @@ def main(): GIT_CHECKOUT_LOCATIONS_FILE = os.path.abspath(options.checkout_location) if GIT_CHECKOUT_LOCATIONS_FILE: - with open(options.checkout_location) as f: + with open(GIT_CHECKOUT_LOCATIONS_FILE) as f: global GIT_CHECKOUT_LOCATIONS GIT_CHECKOUT_LOCATIONS = json.load(f).get("checkouts", {}).get("git", {}) -- cgit v1.2.3