diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-10-25 10:07:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-25 10:07:09 -0400 |
commit | ec55ea8fc503ad3fb53635d7e9e6d58a63c6684a (patch) | |
tree | 4091bf12e12c9923040dfb22601735688d988158 /src/cli | |
parent | 7729d546d2dbda85ca1d86a913e97b51487355ba (diff) | |
parent | e1cfdd3202fbf0a7cb11b8c72ee7ba2cb934d76f (diff) | |
download | stasis-ec55ea8fc503ad3fb53635d7e9e6d58a63c6684a.tar.gz |
Merge pull request #64 from jhunkeler/combine-provides
Combine functions: pip_index_provides and conda_index_provides
Diffstat (limited to 'src/cli')
-rw-r--r-- | src/cli/stasis/system_requirements.c | 2 | ||||
-rw-r--r-- | src/cli/stasis/system_requirements.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/stasis/system_requirements.c b/src/cli/stasis/system_requirements.c index 4554b93..53ebbf7 100644 --- a/src/cli/stasis/system_requirements.c +++ b/src/cli/stasis/system_requirements.c @@ -67,7 +67,7 @@ void check_requirements(struct Delivery *ctx) { check_system_env_requirements(); } -char *check_pathvar(struct Delivery *ctx) { +void check_pathvar(struct Delivery *ctx) { char *pathvar = NULL; pathvar = getenv("PATH"); if (!pathvar) { diff --git a/src/cli/stasis/system_requirements.h b/src/cli/stasis/system_requirements.h index 4c2231a..3a6fa25 100644 --- a/src/cli/stasis/system_requirements.h +++ b/src/cli/stasis/system_requirements.h @@ -8,6 +8,6 @@ void check_system_env_requirements(); void check_system_requirements(struct Delivery *ctx); void check_requirements(struct Delivery *ctx); -char *check_pathvar(struct Delivery *ctx); +void check_pathvar(struct Delivery *ctx); #endif //STASIS_SYSTEM_REQUIREMENTS_H |