diff options
author | Daniel Baumann <daniel@debian.org> | 2009-10-21 13:12:48 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:47 +0100 |
commit | a87d976add27e00de34b6f1ed19021ed012b3620 (patch) | |
tree | 42d0ae7f50b67a74bbe24f69d4ac40673b81fb30 /helpers/lh_config | |
parent | e94c40088753c02e5192db837723be3ce91cb07e (diff) | |
download | vyos-live-build-a87d976add27e00de34b6f1ed19021ed012b3620.tar.gz vyos-live-build-a87d976add27e00de34b6f1ed19021ed012b3620.zip |
Allow to overload global functions with local functions stored in the config tree at scripts/functions.
live-helper 1.0.6 will be the last release of live-helper 1.x, which will
produce lenny 5.0.3 release images. However, when 5.0.4 is due, we'll need
to produce new images with slightly modified functions/release.sh files.
In order to acchieve that, we'll allow to have such a file overload the
functions shipped in live-helper.
This way, we can acchieve that:
* live-helper itself doesn't need to be updated through stable updates
anymore.
* we still can do the required changes for a new point release.
* we even ship the changes in the source tarballs automatically.
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-x | helpers/lh_config | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index b9114bf53..9cbabf60a 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -210,6 +210,11 @@ Local_arguments () rmdir --ignore-fail-on-non-empty config fi + if [ -d scripts/functions ] + then + rmdir --ignore-fail-on-non-empty scripts/functions + fi + if [ -d scripts ] then rmdir --ignore-fail-on-non-empty scripts |