aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-02-06 10:30:08 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-02-06 10:30:08 -0500
commitd0607ffef079f622aa1663d798a79331a149a84f (patch)
tree8257d73fa9cc61545d54c575099e7ef1f13bbd4a /src
parent9c34f9d1676e7f835557e0d188d6382b49a330e0 (diff)
downloadstasis-d0607ffef079f622aa1663d798a79331a149a84f.tar.gz
Add note about overriding the python version.
* I suspect I'll need to craft and update function to handle this change.
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
1 files changed, 2 insertions, 0 deletions
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);