
3 Aug
2013
3 Aug
'13
10:01 a.m.
If xmt-makefv.sh failed, it will prompt FAILED: <reason>. But the reason part is blank. It is because die() in xmt-makefv.sh use $i to show the reason. That should be $1 rather than $i. Signed-off-by: Jincheng Miao <jmiao@redhat.com> --- suites/libvirt-cim/images/xmt-makefv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suites/libvirt-cim/images/xmt-makefv.sh b/suites/libvirt-cim/images/xmt-makefv.sh index 64ca362..1cf6a0f 100755 --- a/suites/libvirt-cim/images/xmt-makefv.sh +++ b/suites/libvirt-cim/images/xmt-makefv.sh @@ -31,7 +31,7 @@ else fi die() { - echo "FAILED: $i" >&2 + echo "FAILED: $1" >&2 umount $TMPMOUT >/dev/null 2>&1 kpartx -d $loop >/dev/null 2>&1 -- 1.8.3.1