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