diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-18 08:45:58 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-18 08:45:58 +0100 |
| commit | b21246fbf4b082e21f811d488bd85e8dafdee428 (patch) | |
| tree | 86d0ff4cfb91cf609071c900f2d400ecb89bdba2 /dev/cli | |
| parent | c782117221f0b8f0bb018df673f935c1791fee32 (diff) | |
feat: CMake file, new entries to gitignore, and code under BSD-3 now.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/cli')
| -rw-r--r-- | dev/cli/App.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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 <BuildKit/JSONManifestBuilder.h> @@ -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") { |
