diff options
author | Daniel Baumann <daniel@debian.org> | 2010-01-11 23:58:54 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2010-01-11 23:59:22 +0100 |
commit | bf343607c12ca5144056742f8da46d526930c98c (patch) | |
tree | fec192a34f8920d5f25f7503b27123ca7b376cc6 /live-helper.sh | |
parent | 62ed53512dca7010dcea95afeca3b8d91f6fb34e (diff) | |
download | vyos-live-build-bf343607c12ca5144056742f8da46d526930c98c.tar.gz vyos-live-build-bf343607c12ca5144056742f8da46d526930c98c.zip |
Renaming directory that holds automatic scripts (e.g. scripts/config or scripst/clean) to auto for consistency reasons.
Diffstat (limited to 'live-helper.sh')
-rwxr-xr-x | live-helper.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/live-helper.sh b/live-helper.sh index 626ba3f70..59d475f5b 100755 --- a/live-helper.sh +++ b/live-helper.sh @@ -9,9 +9,9 @@ do done # Source local functions -if ls scripts/functions/*.sh > /dev/null 2>&1 +if ls auto/functions/* > /dev/null 2>&1 then - for FUNCTION in scripts/functions/*.sh + for FUNCTION in auto/functions/* do . "${FUNCTION}" done |