blob: b8846a4a208206e9833b077b13a65ef9d2aafc99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
if [ -e local/live-build ]
then
LIVE_BUILD="${LIVE_BUILD:-${PWD}/local/live-build}"
export LIVE_BUILD
fi
# Source global functions
for FUNCTION in "${LIVE_BUILD}"/functions/*.sh /usr/share/live/build/functions/*.sh
do
if [ -e "${FUNCTION}" ]
then
. "${FUNCTION}"
fi
done
# Source local functions
if ls local/functions/* > /dev/null 2>&1
then
for FUNCTION in local/functions/*
do
. "${FUNCTION}"
done
fi
|