summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lamb <lamby@debian.org>2010-08-05 20:16:01 -0400
committerChris Lamb <lamby@debian.org>2010-08-05 20:16:15 -0400
commit0dd30405ed7e49821e29e29bf73505b4817f6258 (patch)
treefb7a8fa21de7085ac503f5d00f4fa4396c2da940
parent040fd3753ab70f0c2b8aebd1da0287340ea5ab89 (diff)
downloadvyos-live-build-0dd30405ed7e49821e29e29bf73505b4817f6258.tar.gz
vyos-live-build-0dd30405ed7e49821e29e29bf73505b4817f6258.zip
Fix LH_INTERACTIVE switch statement.
Signed-off-by: Chris Lamb <lamby@debian.org>
-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 dc5461df7..360557e0a 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