diff --git a/lib/functions/cli/commands.sh b/lib/functions/cli/commands.sh index 630c9fa95..d5406e751 100644 --- a/lib/functions/cli/commands.sh +++ b/lib/functions/cli/commands.sh @@ -30,7 +30,7 @@ function armbian_register_commands() { ["build"]="standard_build" # implemented in cli_standard_build_pre_run and cli_standard_build_run ["distccd"]="distccd" # implemented in cli_distccd_pre_run and cli_distccd_run - ["flash"]="flash" # implemented in cli_flash_pre_run and cli_flash_run + ["flash"]="flash" # implemented in cli_flash_pre_run and cli_flash_run # external tooling, made easy. ["oras-upload"]="oras" # implemented in cli_oras_pre_run and cli_oras_run; up/down/info are the same, see vars below diff --git a/lib/library-functions.sh b/lib/library-functions.sh index 67ae9bb39..3e195e67b 100644 --- a/lib/library-functions.sh +++ b/lib/library-functions.sh @@ -1153,7 +1153,6 @@ set -o errexit ## set -e : exit the script if any statement returns a non-true # shellcheck source=lib/functions/rootfs/trap-rootfs.sh source "${SRC}"/lib/functions/rootfs/trap-rootfs.sh - # no errors tolerated. one last time for the win! #set -o pipefail # trace ERR through pipes - will be enabled "soon" #set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled diff --git a/lib/tools/gen-library.sh b/lib/tools/gen-library.sh index 741babf1f..fcdcdfeef 100755 --- a/lib/tools/gen-library.sh +++ b/lib/tools/gen-library.sh @@ -42,7 +42,6 @@ find lib/functions -type f -name \*.sh | sort -h | while read -r path; do done cat <<- AUTOGEN_INCLUDES_FOOTER >> "${TARGET_SH}" - # no errors tolerated. one last time for the win! #set -o pipefail # trace ERR through pipes - will be enabled "soon" #set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled