diff options
author | Daniel Baumann <daniel@debian.org> | 2012-06-04 10:56:37 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-06-04 11:55:22 +0200 |
commit | 328222f8c76ea87a07b33c69ba10f3ba0e107169 (patch) | |
tree | deb56765764c5d2d2fb20b364110af8a27bcb9f0 /scripts/build.sh | |
parent | 434307c22d192e1f937915b417615f62b3b6bead (diff) | |
download | vyos-live-build-328222f8c76ea87a07b33c69ba10f3ba0e107169.tar.gz vyos-live-build-328222f8c76ea87a07b33c69ba10f3ba0e107169.zip |
Moving local includes from auto/{functions,scripts} to local/{functions,scripts} where they belong.
Diffstat (limited to 'scripts/build.sh')
-rwxr-xr-x | scripts/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 74898d473..500c76d50 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -17,9 +17,9 @@ do done # Source local functions -if ls auto/functions/* > /dev/null 2>&1 +if ls local/functions/* > /dev/null 2>&1 then - for FUNCTION in auto/functions/* + for FUNCTION in local/functions/* do . "${FUNCTION}" done |