diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-18 09:12:13 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-18 09:13:49 -0500 |
commit | 6292c699248d3dfa6271ae0961e63436615653f2 (patch) | |
tree | c456bacd51414480179c60e520867c8ff9cc1836 /include/fs.h | |
parent | 1c2cdc4d8e28ce1b4c0d1ba75686f05fd5dd772d (diff) | |
download | spmc-6292c699248d3dfa6271ae0961e63436615653f2.tar.gz |
Rework dependency scanning:
* Stop resolving dependencies during manifest creation
* Resolve dependencies by path
* Die on failure to resolve
* Fixed an off-by-one error in manifest_read
* Add CLI argument -M|--override-manifest to disable default manifest(s)
* Clean up expandpath() a bit
Diffstat (limited to 'include/fs.h')
-rw-r--r-- | include/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fs.h b/include/fs.h index 5e41011..7e8ef12 100644 --- a/include/fs.h +++ b/include/fs.h @@ -25,6 +25,6 @@ char *dirname(const char *_path); char *basename(char *path); int rsync(const char *_args, const char *_source, const char *_destination); char *human_readable_size(uint64_t n); - +char *expandpath(const char *_path); #endif //SPM_FSTREE_H |