diff options
author | Daniel Baumann <daniel@debian.org> | 2009-01-27 15:12:37 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:40 +0100 |
commit | 93a73a97493636b764e072413469e17802e270b8 (patch) | |
tree | 0840de5749eb17cdb11da93b058e467be56c882e | |
parent | 989f26d87b5ef36e1f1fd419a9ff2996b3f4b360 (diff) | |
download | live-build-93a73a97493636b764e072413469e17802e270b8.zip live-build-93a73a97493636b764e072413469e17802e270b8.tar.gz |
Including functions.sh, forgot to add it before.
-rwxr-xr-x | functions.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/functions.sh b/functions.sh new file mode 100755 index 0000000..2ef04bb --- /dev/null +++ b/functions.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +LH_BASE="${LH_BASE:-/usr/share/live-helper}" + +for FUNCTION in "${LH_BASE}"/functions/*.sh +do + . "${FUNCTION}" +done |