aboutsummaryrefslogtreecommitdiff
path: root/src/cli
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2024-10-25 10:07:09 -0400
committerGitHub <noreply@github.com>2024-10-25 10:07:09 -0400
commitec55ea8fc503ad3fb53635d7e9e6d58a63c6684a (patch)
tree4091bf12e12c9923040dfb22601735688d988158 /src/cli
parent7729d546d2dbda85ca1d86a913e97b51487355ba (diff)
parente1cfdd3202fbf0a7cb11b8c72ee7ba2cb934d76f (diff)
downloadstasis-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.c2
-rw-r--r--src/cli/stasis/system_requirements.h2
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