summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChris Lamb <lamby@debian.org>2010-08-05 20:16:01 -0400
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:17:17 +0100
commit1ebf50084b2fdd60883ed6bd84171c02223b1889 (patch)
treefb7a8fa21de7085ac503f5d00f4fa4396c2da940 /scripts
parent2a959aa2c7faac8b8407a8c430fa75e47adeec48 (diff)
downloadlive-build-1ebf50084b2fdd60883ed6bd84171c02223b1889.zip
live-build-1ebf50084b2fdd60883ed6bd84171c02223b1889.tar.gz
Fix LH_INTERACTIVE switch statement.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build/chroot_interactive10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/build/chroot_interactive b/scripts/build/chroot_interactive
index dc5461d..360557e 100755
--- a/scripts/build/chroot_interactive
+++ b/scripts/build/chroot_interactive
@@ -45,15 +45,15 @@ Create_lockfile .lock
case "${LH_INTERACTIVE}" in
true|shell)
Echo_message "Pausing build: starting interactive shell..."
- Chroot chroot "/bin/bash --login"
+ Chroot chroot "/bin/bash --login"
;;
- x11)
+ x11)
Echo_message "Pausing build: starting interactive X11..."
- Chroot chroot "startx"
+ Chroot chroot "startx"
;;
- xnest)
+ xnest)
Echo_message "Pausing build: starting interactive Xnest..."
- #Chroot chroot "" # FIXME
+ #Chroot chroot "" # FIXME
;;
esac