diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-01-07 15:32:37 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-07 15:32:37 +0100 |
commit | 088fdb78693bd964ab20f92040433cc0ba41f1d7 (patch) | |
tree | c2c671aaf898a612c7cb1828038dad0a3eef0400 | |
parent | 01f43de7bb7059af65056e6fe313392e07b720aa (diff) | |
download | jenkins.debian.net-088fdb78693bd964ab20f92040433cc0ba41f1d7.tar.xz |
live-build: append to package list instead of overwriting it (#774774) - thanks Daniel for the hint
-rwxr-xr-x | bin/live-build.sh | 6 |
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 |