diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2012-12-05 21:39:15 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2012-12-05 23:37:58 +0100 |
commit | e62ddc30580852399401f15c7149f10c1b000117 (patch) | |
tree | 5b02b27a731c407bbb80f61de9ed40f3661030ff | |
parent | a2acf381c20044c5524b4e3eda344497e2494df3 (diff) | |
download | jenkins.debian.net-e62ddc30580852399401f15c7149f10c1b000117.tar.xz |
Make qemu-img call compatible with the version in Squeeze, where only capital G is recognized.
-rwxr-xr-x | bin/cd_tester.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/cd_tester.sh b/bin/cd_tester.sh index 6cddda66..0e19b1ac 100755 --- a/bin/cd_tester.sh +++ b/bin/cd_tester.sh @@ -80,8 +80,8 @@ cleanup_all() { bootstrap() { cd $WORKSPACE - echo "Creating raw disk image with ${DISKSIZE_IN_GB}g now." - qemu-img create -f raw $NAME.raw ${DISKSIZE_IN_GB}g + echo "Creating raw disk image with ${DISKSIZE_IN_GB} GiB now." + qemu-img create -f raw $NAME.raw ${DISKSIZE_IN_GB}G echo "Doing cd tests for $NAME now." case $NAME in wheezy-debian-edu-workstation) |