V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m54s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-10-12 18:58:03 +01:00
parent 5f36d27c62
commit 140f82829e
8 changed files with 67 additions and 24 deletions

View File

@@ -16,16 +16,13 @@ guard_sourcing
# Build Ultra Hardened dropbear-2025.88 from sources.
# Globals:
# DIR_TMP
# PATH
# PATH_SEPARATOR
# SHELLOPTS
# VAR_DEBUG_TRACE
# TARGET
# VAR_SETUP_PATH
# Arguments:
# None
# Returns:
# 0: on success
# ERR_PATH_NOT_VALID
# ERR_PATH_NOT_VALID: on failure
#######################################
dropbear_build() {
### Declare Arrays, HashMaps, and Variables.
@@ -76,4 +73,7 @@ dropbear_build() {
guard_dir && return 0
}
### Prevents accidental 'unset -f'.
# shellcheck disable=SC2034
readonly -f dropbear_build
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh