diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-10-21 12:11:05 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-10-21 12:11:05 -0400 |
commit | 5d21c2c6eab632cc519eb23e529c2d985ac04921 (patch) | |
tree | 1d6675040d6ff6ade3457e6133b38a36694eba47 /include | |
parent | f954efd16b99520720d05abde5ec8ff741faa2dd (diff) | |
download | stasis-5d21c2c6eab632cc519eb23e529c2d985ac04921.tar.gz |
Change signature:
* delivery_gather_tool_versions now returns non-zero if unable to determine a tool's version
Diffstat (limited to 'include')
-rw-r--r-- | include/delivery.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/delivery.h b/include/delivery.h index bd5137c..345cd13 100644 --- a/include/delivery.h +++ b/include/delivery.h @@ -385,7 +385,7 @@ void delivery_install_conda(char *install_script, char *conda_install_dir); int delivery_format_str(struct Delivery *ctx, char **dest, const char *fmt); // helper function -void delivery_gather_tool_versions(struct Delivery *ctx); +int delivery_gather_tool_versions(struct Delivery *ctx); // helper function int delivery_init_tmpdir(struct Delivery *ctx); |