diff options
-rwxr-xr-x | scripts/build.sh | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 21ff520d8..2e4a79ec8 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -6,11 +6,18 @@ then export LIVE_BUILD fi -# Source global functions -for FUNCTION in "${LIVE_BUILD}"/functions/*.sh /usr/share/live/build/functions/*.sh +for _DIRECTORY in "${LIVE_BUILD}/functions" /usr/share/live/build/functions do - if [ -e "${FUNCTION}" ] + if [ -e "${_DIRECTORY}" ] then - . "${FUNCTION}" + for _FILE in "${_DIRECTORY}"/*.sh + do + if [ -e "${_FILE}" ] + then + . "${_FILE}" + fi + done + + break fi done |