From d0607ffef079f622aa1663d798a79331a149a84f Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 6 Feb 2024 10:30:08 -0500 Subject: Add note about overriding the python version. * I suspect I'll need to craft and update function to handle this change. --- src/main.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/main.c b/src/main.c index efca7c0..56158c8 100644 --- a/src/main.c +++ b/src/main.c @@ -253,6 +253,8 @@ int main(int argc, char *argv[], char *arge[]) { globals.continue_on_error = arg_continue_on_error; // Override Python version from command-line, if any + // TODO: Investigate better method to override. + // And make sure all pointers/strings are updated if (strlen(python_override_version) && ctx.meta.python) { guard_free(ctx.meta.python) ctx.meta.python = strdup(python_override_version); -- cgit