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

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-08-27 19:38:29 +02:00
parent 69888c0daf
commit d316c1d2b5
4 changed files with 19 additions and 24 deletions

View File

@@ -49,7 +49,8 @@ dropbear_build() {
# -s : Strip unnecessary symbols directly during linking
# -Wl,-z,relro,-z,now: Enables full RELRO (symbol resolution at program startup)
[[ "${VAR_DEBUG_TRACE,,}" == "true" ]] && set +x
guard_trace on
# shellcheck disable=SC2016,SC2312
setsid bash -c '
### Sterile environment for the build-process.
@@ -70,7 +71,8 @@ dropbear_build() {
# shellcheck disable=2312
make -j"$(nproc)"
' >> "${TARGET}${var_logfile}" 2>&1
[[ "${VAR_DEBUG_TRACE,,}" == "true" ]] && set -x
guard_trace off
guard_dir && return 0
}