armbian_build/lib/functions/cli/cli-undecided.sh
Ricardo Pardini 497a3a80ab
armbian-next: cli: de-hardcode build and docker's interdependence, via DOCKER_CLI_CMD
- `undecided` now directly sends to `build`, which might send to `docker`, which relaunches `build` in Docker;
- the _sending to Docker_ part probably needs refactor
2023-02-18 07:40:05 -03:00

10 lines
316 B
Bash

function cli_undecided_pre_run() {
# If undecided, run the 'build' command.
display_alert "cli_undecided_pre_run" "func cli_undecided_pre_run go to build" "debug"
ARMBIAN_CHANGE_COMMAND_TO="build"
}
function cli_undecided_run() {
exit_with_error "Should never run the undecided command. How did this happen?"
}