diff options
author | Daniel Baumann <daniel@debian.org> | 2007-10-31 10:49:38 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2007-10-31 10:49:38 +0100 |
commit | eaadafff8e8b15cc474a9859252877cd1fd02a8c (patch) | |
tree | ff893afc83d24d738de297df99590c38343a34a0 | |
parent | 779a9dbe2e53c5afdaf587d4ed72ad024b48284c (diff) | |
download | vyos-live-build-eaadafff8e8b15cc474a9859252877cd1fd02a8c.tar.gz vyos-live-build-eaadafff8e8b15cc474a9859252877cd1fd02a8c.zip |
Fixing typing error (wrong variable name).
-rwxr-xr-x | helpers/lh_bootstrap_debootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_bootstrap_debootstrap b/helpers/lh_bootstrap_debootstrap index 101ab9551..3ae607570 100755 --- a/helpers/lh_bootstrap_debootstrap +++ b/helpers/lh_bootstrap_debootstrap @@ -86,11 +86,11 @@ if [ -z "${LH_BOOTSTRAP_FLAVOUR}" ] then case "${LH_PACKAGES_LISTS}" in minimal|mini) - DEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --variant=buildd" + DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=buildd" ;; esac else - DEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --variant=${LH_BOOTSTRAP_FLAVOUR}" + DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=${LH_BOOTSTRAP_FLAVOUR}" fi if [ "${LH_VERBOSE}" = "true" ] |