V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m51s
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m51s
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
@@ -14,7 +14,13 @@ guard_sourcing
|
||||
|
||||
### Definition of MUST set early variables.
|
||||
# shellcheck disable=SC2155
|
||||
declare -grx VAR_BASH_VER="$(bash --version | head -n1 | awk '{print $4" "$5" "$6}')"
|
||||
declare -grx VAR_BASH_VER="$(bash --version | head -n1 | awk '{
|
||||
# Print $4 and $5; include $6 only if it exists
|
||||
out = $4
|
||||
if (NF >= 5) out = out " " $5
|
||||
if (NF >= 6) out = out " " $6
|
||||
print out
|
||||
}')"
|
||||
declare -grx VAR_CONTACT="security@coresecret.eu"
|
||||
# shellcheck disable=SC2155
|
||||
declare -grx VAR_DS_VER="$(debootstrap --version)"
|
||||
|
||||
Reference in New Issue
Block a user