diff options
author | Daniel Baumann <daniel@debian.org> | 2009-07-15 14:17:35 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:45 +0100 |
commit | b305694034b6503484256067bec516b42400c9fe (patch) | |
tree | d8a5b68ab7186f13783d950bf9af0e36c008d40a /helpers/lh_binary_debian-installer | |
parent | 2c2d1e10c4389becf9022970fbd0824b5f77ff94 (diff) | |
download | vyos-live-build-b305694034b6503484256067bec516b42400c9fe.tar.gz vyos-live-build-b305694034b6503484256067bec516b42400c9fe.zip |
Cosmetical simplification of debian-installer DESTDIR assignement, thanks to Cody A.W. Somerville <cody.somerville@canonical.com>.
Diffstat (limited to 'helpers/lh_binary_debian-installer')
-rwxr-xr-x | helpers/lh_binary_debian-installer | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 5e91e8348..14779935a 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -79,10 +79,6 @@ Install_package # Setting destination directory case "${LH_BINARY_IMAGES}" in - iso) - DESTDIR="binary/install" - ;; - net) DESTDIR="tftpboot/debian-install/${LH_ARCHITECTURE}" ;; @@ -96,6 +92,10 @@ case "${LH_BINARY_IMAGES}" in DESTDIR="binary" fi ;; + + *) + DESTDIR="binary/install" + ;; esac # Set d-i image type |