From 028915447e6bbe25a3ac55b38a2811231374bab1 Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Wed, 30 Nov 2022 13:06:47 +0100 Subject: Just-mr: Fix handling and meaning of --just option The value of --just option should be used as-is, as it might be a var in PATH. The `execvp` call will handle this. The Python script and man page have been updated accrodingly. --- 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 3bc67b2a..e4671d2c 100755 --- a/bin/just-mr.py +++ b/bin/just-mr.py @@ -1043,7 +1043,7 @@ def main(): global JUST if options.just: - JUST = os.path.abspath(options.just) + JUST = options.just global ALWAYS_FILE ALWAYS_FILE = options.always_file -- cgit v1.2.3