mirror of
https://github.com/armbian/build.git
synced 2025-08-09 20:56:57 +02:00
- `undecided` now directly sends to `build`, which might send to `docker`, which relaunches `build` in Docker; - the _sending to Docker_ part probably needs refactor
10 lines
316 B
Bash
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?"
|
|
}
|