The rebuild subcommand now executes the full pipeline: - build_registry() -> resolve() -> sched::run() - install::install() for each built package - service::install_service() for enabled services - boot::install_bootloader_config() for bootloader config - system::write_hostname() / write_timezone() for system activation Added --dry-run flag for report-only behavior (backward compat with test suite). Added -w flag for worker parallelism and --dry-run to help. Fixed .gitignore: 'kappa' -> '/kappa' (was matching include/kappa/, preventing header files from being tracked since initial commit). This commit also adds all previously-gitignored header files.
9 lines
170 B
C++
9 lines
170 B
C++
#pragma once
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
namespace kappa::util {
|
|
std::string to_lower(std::string_view sv);
|
|
std::string shell_escape(std::string_view s);
|
|
}
|