mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
7 lines
138 B
Bash
7 lines
138 B
Bash
#!/bin/bash
|
|
|
|
while read -r file; do
|
|
# shellcheck source=/dev/null
|
|
source "$file"
|
|
done <<< "$(find "${SRC}/lib/functions" -name "*.sh")"
|