armbian_build/lib/functions/cli/cli-undecided.sh
Igor Pečovnik b7b8eb7b72
Add / modify (c) in bash scripts (#4922)
* Add / modify (c) in bash scripts

Signed-off-by: Igor <igor@armbian.com>

* Add (c) to the source config files

---------

Signed-off-by: Igor <igor@armbian.com>
2023-03-09 18:30:40 +01:00

19 lines
525 B
Bash

#!/usr/bin/env bash
#
# SPDX-License-Identifier: GPL-2.0
#
# Copyright (c) 2013-2023 Igor Pecovnik, igor@armbian.com
#
# This file is a part of the Armbian Build Framework
# https://github.com/armbian/build/
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?"
}