From b21246fbf4b082e21f811d488bd85e8dafdee428 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 18 Nov 2025 08:45:58 +0100 Subject: feat: CMake file, new entries to gitignore, and code under BSD-3 now. Signed-off-by: Amlal El Mahrouss --- dev/cli/App.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dev/cli') diff --git a/dev/cli/App.cc b/dev/cli/App.cc index ca81d4e..d78ad69 100644 --- a/dev/cli/App.cc +++ b/dev/cli/App.cc @@ -1,7 +1,7 @@ // ============================================================= // // nebuild -// Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved. +// Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under BSD-3 license. // ============================================================= // #include @@ -19,10 +19,10 @@ int main(int argc, char** argv) { if (index_path == "-v" || index_path == "--version") { NeBuild::Logger::info() << "NeKernel Build Tool.\n"; NeBuild::Logger::info() - << "Bugs, or issues? Check out: https://github.com/nekernel-org/nebuild/issues\n"; + << "Bugs or issues? Check out: https://github.com/nekernel-org/nebuild/issues\n"; return EXIT_SUCCESS; - } else if (index_path == "--dry-run") { + } else if (index_path == "--dry-run" || index_path == "-n") { kDryRun = true; continue; } else if (index_path == "-h" || index_path == "--help") { -- cgit v1.2.3