mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
b8a0e9a9b8
Keep the header minimal and clean
12 lines
270 B
C++
12 lines
270 B
C++
#include "log-store.hh"
|
|
|
|
namespace nix {
|
|
|
|
std::optional<std::string> LogStore::getBuildLog(const StorePath & path) {
|
|
auto maybePath = getBuildDerivationPath(path);
|
|
if (!maybePath)
|
|
return std::nullopt;
|
|
return getBuildLogExact(maybePath.value());
|
|
}
|
|
|
|
}
|