diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-07-10 09:59:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 09:59:01 -0400 |
commit | 4a880c3cc085841a1537040405bc142fefffd7ff (patch) | |
tree | 0b7cea0077b0db53631879b95c3df75ced916f7a /src/libcmd/common-eval-args.hh | |
parent | fea7d3b1cd49679c0fe582e14bbb70fa995da962 (diff) | |
parent | be518e73ae331ac2f46e6b3a0ffdfeead26e3186 (diff) |
Merge pull request #8579 from obsidiansystems/findPath-cleanup-2
Further search path cleanups
Diffstat (limited to 'src/libcmd/common-eval-args.hh')
-rw-r--r-- | src/libcmd/common-eval-args.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcmd/common-eval-args.hh b/src/libcmd/common-eval-args.hh index b65cb5b20..6359b2579 100644 --- a/src/libcmd/common-eval-args.hh +++ b/src/libcmd/common-eval-args.hh @@ -3,6 +3,7 @@ #include "args.hh" #include "common-args.hh" +#include "search-path.hh" namespace nix { @@ -19,7 +20,7 @@ struct MixEvalArgs : virtual Args, virtual MixRepair Bindings * getAutoArgs(EvalState & state); - Strings searchPath; + SearchPath searchPath; std::optional<std::string> evalStoreUrl; |