From 088fdb78693bd964ab20f92040433cc0ba41f1d7 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 7 Jan 2015 15:32:37 +0100 Subject: live-build: append to package list instead of overwriting it (#774774) - thanks Daniel for the hint --- bin/live-build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin/live-build.sh') diff --git a/bin/live-build.sh b/bin/live-build.sh index e28c80ba..80c75dd9 100755 --- a/bin/live-build.sh +++ b/bin/live-build.sh @@ -20,11 +20,11 @@ trap cleanup_all INT TERM EXIT # $3 is choosing the flavor lb config --distribution $2 --bootappend-live "boot=live config hostname=$1 username=$1" case "$3" in - standalone) echo education-standalone > config/package-lists/live.list.chroot + standalone) echo education-standalone >> config/package-lists/live.list.chroot ;; - gnome) echo gnome > config/package-lists/live.list.chroot + gnome) echo gnome >> config/package-lists/live.list.chroot ;; - xfce) echo xfce4 > config/package-lists/live.list.chroot + xfce) echo xfce4 >> config/package-lists/live.list.chroot ;; *) ;; esac -- cgit v1.2.3-54-g00ecf