armbian_build/lib/functions/cli/cli-build.sh
Ricardo Pardini da1cf2b475
armbian-next: rename too-long main function to prep_conf_main_build_single()
- this commit is proof of OCD (old name didn't fit stacktrace space)
2023-02-18 07:43:42 -03:00

15 lines
482 B
Bash

function cli_standard_build_pre_run() {
declare -g ARMBIAN_COMMAND_REQUIRE_BASIC_DEPS="yes" # Require prepare_host_basic to run before the command.
# "gimme root on a Linux machine"
cli_standard_relaunch_docker_or_sudo
}
function cli_standard_build_run() {
# configuration etc - it initializes the extension manager; handles its own logging sections
prep_conf_main_build_single
# main_default_build_single() handles its own logging sections...
main_default_build_single
}