Skip to content

Commit 750fb2c

Browse files
author
Marcus Sorensen
committed
Summary: Fix improper variable assignment in resizevolume.sh (remove $)
Signed-off-by: Marcus Sorensen <marcus@betterservers.com> 1360089640 -0700
1 parent 7f885b6 commit 750fb2c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/storage/qcow2/resizevolume.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ resizeqcow2() {
177177
fi
178178
##### end sanity #####
179179

180-
$actualsize=`qemu-img info $path | grep "virtual size" | sed -re 's/^.*\(([0-9]+).*$/\1/g'`
180+
actualsize=`qemu-img info $path | grep "virtual size" | sed -re 's/^.*\(([0-9]+).*$/\1/g'`
181181

182182
if [ $actualsize -ne $currentsize ]
183183
then

0 commit comments

Comments
 (0)