Description
I am considering removing util::actual_path()
and just making all the utilities assume that the current working directory that we should operate in is the current working directory of the binary. The original point of util::actual_path()
was to support the testing framework, but we won't need it for that once #24 is merged.
I can see it still being useful in some cases where mesabox
is used as a library within another program as it allows operating in different directories without modifying the arguments or changing the host program's current working directory (which could be problematic if that program were to be multi-threaded). At the same time, removing util::actual_path()
makes the utilities simpler and reduces the number of allocations we need to perform.