summaryrefslogtreecommitdiff
path: root/helpers
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-06-13 14:28:27 +0100
committerChris Lamb <chris@chris-lamb.co.uk>2008-06-13 14:28:27 +0100
commit51670fa564778816ca9679b01d537d2a24184abc (patch)
tree85c645302700c843f7ccf0a111e46b0a59a9ddf6 /helpers
parent3dfe5d30fe5dfb227d8c3be7f1a0d7793f9c36b8 (diff)
downloadvyos-live-build-51670fa564778816ca9679b01d537d2a24184abc.tar.gz
vyos-live-build-51670fa564778816ca9679b01d537d2a24184abc.zip
Fix a few bogus guards in lh_binary_debian-installer
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Diffstat (limited to 'helpers')
-rwxr-xr-xhelpers/lh_binary_debian-installer6
1 files changed, 3 insertions, 3 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer
index 17793fcca..1fb91140f 100755
--- a/helpers/lh_binary_debian-installer
+++ b/helpers/lh_binary_debian-installer
@@ -301,7 +301,7 @@ then
fi
# Including local debs
- if ls ../config/binary_local-debs/*_"${LH_ARCHITECTURE}".udeb > /dev/null 2>&1
+ if ls ../config/binary_local-debs/*_"${LH_ARCHITECTURE}".deb > /dev/null 2>&1
then
for FILE in ../config/binary_local-debs/*_"${LH_ARCHITECTURE}".deb
do
@@ -309,7 +309,7 @@ then
done
fi
- if ls ../config/binary_local-debs/*_all.udeb > /dev/null 2>&1
+ if ls ../config/binary_local-debs/*_all.deb > /dev/null 2>&1
then
for FILE in ../config/binary_local-debs/*_all.deb
do
@@ -452,7 +452,7 @@ then
fi
# Including preseeding files
- if [ -e config/binary_debian-installer/preseed*.cfg ]
+ if ls config/binary_debian_installer/preseed*.cfg > /dev/null 2>&1
then
cp config/binary_debian-installer/preseed*.cfg binary/install
fi