summaryrefslogtreecommitdiffstats
path: root/bin/live-build.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-01-07 15:32:37 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-07 15:32:37 +0100
commit088fdb78693bd964ab20f92040433cc0ba41f1d7 (patch)
treec2c671aaf898a612c7cb1828038dad0a3eef0400 /bin/live-build.sh
parent01f43de7bb7059af65056e6fe313392e07b720aa (diff)
downloadjenkins.debian.net-088fdb78693bd964ab20f92040433cc0ba41f1d7.tar.xz
live-build: append to package list instead of overwriting it (#774774) - thanks Daniel for the hint
Diffstat (limited to 'bin/live-build.sh')
-rwxr-xr-xbin/live-build.sh6
1 files changed, 3 insertions, 3 deletions
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