Summary
import_base_lib() declares the same local variable twice in a row.
Details
base_init.sh:341-342:
local lib_path
local lib_path
Impact
Harmless today (Bash tolerates redeclaring a local), but it's a copy-paste artifact that could mask an intended second variable that was never added, and is dead weight in a foundational bootstrap file.
Suggested fix
Remove the duplicate local lib_path line.
Summary
import_base_lib()declares the same local variable twice in a row.Details
base_init.sh:341-342:Impact
Harmless today (Bash tolerates redeclaring a local), but it's a copy-paste artifact that could mask an intended second variable that was never added, and is dead weight in a foundational bootstrap file.
Suggested fix
Remove the duplicate
local lib_pathline.