Didn't realize that you can pass multiple projects to BuildLiveCD.

Let's try SUBPROJECT using an argument.
ubuntu/precise
Evan Dandrea 14 years ago
parent eac66eb1b1
commit ffb9021bee

@ -33,8 +33,9 @@ PROPOSED=""
IMAGEFORMAT="" IMAGEFORMAT=""
LIVE_BUILD=false LIVE_BUILD=false
while getopts :s:d:f:pa:l name; do case $name in while getopts :s:r:d:f:pa:l name; do case $name in
s) SUBARCH="$OPTARG";; s) SUBARCH="$OPTARG";;
r) SUBPROJECT="$OPTARG";;
d) NEWSUITE="$OPTARG";; d) NEWSUITE="$OPTARG";;
f) IMAGEFORMAT="$OPTARG";; f) IMAGEFORMAT="$OPTARG";;
p) PROPOSED="-p";; p) PROPOSED="-p";;
@ -98,8 +99,7 @@ if [ "`echo $@ | wc -w`" -gt "1" ]; then
exit 0 exit 0
fi fi
FS="$1" FS="$1"
SUBPROJECT="$2" shift
shift 2
lockfile ~/buildLiveCD.lock || exit 1 lockfile ~/buildLiveCD.lock || exit 1
trap "finish" 0 trap "finish" 0

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (2.13) UNRELEASED; urgency=low
* Didn't realize that you can pass multiple projects to BuildLiveCD.
Let's try SUBPROJECT using an argument.
-- Evan Dandrea <ev@ubuntu.com> Wed, 06 Jul 2011 17:20:24 +0100
livecd-rootfs (2.12) oneiric; urgency=low livecd-rootfs (2.12) oneiric; urgency=low
[ Colin Watson ] [ Colin Watson ]

Loading…
Cancel
Save