summaryrefslogtreecommitdiffhomepage
path: root/dev/cli/Tool.cc
diff options
context:
space:
mode:
authorAmlal <amlal@nekernel.org>2025-08-10 14:44:11 +0200
committerAmlal <amlal@nekernel.org>2025-08-10 14:44:49 +0200
commit4c462511485168cfc831a1447267fd76145d5183 (patch)
tree4133a79658d9df7db05556cc80d95a34342a84bb /dev/cli/Tool.cc
parentbc9a0f44a1db9b0cefd891d0d6dcb758dd00b209 (diff)
feat! breaking changes in nebuild's API, examples have been updated too.
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'dev/cli/Tool.cc')
-rw-r--r--dev/cli/Tool.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/cli/Tool.cc b/dev/cli/Tool.cc
index 4c226fc..315f197 100644
--- a/dev/cli/Tool.cc
+++ b/dev/cli/Tool.cc
@@ -60,7 +60,7 @@ int main(int argc, char** argv) {
NeBuild::Logger::info() << "building manifest: " << index_path << std::endl;
- if (builder && !builder->BuildTarget(index_path.size(), index_path.c_str(), kDryRun)) {
+ if (builder && !builder->BuildTarget(index_path, kDryRun)) {
kFailed = true;
}