mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-1340: Fix typo in variable in build.sh
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
20070ee07f
commit
0f30c1e6b0
|
|
@ -47,7 +47,7 @@ shared_folders=`vboxmanage showvminfo $appliance | grep Name | grep Host | cut -
|
|||
# Remove any shared folder
|
||||
while [[ $shared_folders != "" ]]
|
||||
do
|
||||
folder=`echo $folders|head -1`
|
||||
folder=`echo $shared_folders | head -1`
|
||||
vboxmanage sharedfolder remove systemvmtemplate --name $folder
|
||||
shared_folders=`echo $shared_folders | grep -v $folder`
|
||||
done
|
||||
|
|
|
|||
Loading…
Reference in New Issue