diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-06-13 15:52:16 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:34 +0100 |
commit | 7540b66682f1650b7f245c01c8087f97c39a6fd3 (patch) | |
tree | aa9b4d2317f089a724ff5edbd9fa9a5fdb14c927 /helpers/lh_binary_debian-installer | |
parent | 90d2fedc098f1059e23fb75a2c6c58aa66dbb46e (diff) | |
download | live-build-7540b66682f1650b7f245c01c8087f97c39a6fd3.zip live-build-7540b66682f1650b7f245c01c8087f97c39a6fd3.tar.gz |
Don't exclude live-installer when LH_DEBIAN_INSTALLER=live
Diffstat (limited to 'helpers/lh_binary_debian-installer')
-rwxr-xr-x | helpers/lh_binary_debian-installer | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 1fb9114..e5d0bc1 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -392,6 +392,11 @@ then for EXCLUDE in $(cat exclude) do + if [ "${LH_DEBIAN_INSTALLER}" = "live" ] && [ "${EXCLUDE}" = "live-installer" ] + then + continue + fi + rm -f "${EXCLUDE}"_*.udeb done |