File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
examples/virtual-hard-disk Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ printf "\n1. Creating a new resource group: %s and location: %s.\n" "$groupName"
6
6
azure group create -n " $groupName " --location " $location "
7
7
8
8
printf " \n2. Creating a new storage account"
9
- azure storage account new --resourcegroupname " $groupName " --name " $groupName " --location " $location " --type " $storageAccountType "
9
+ result= ` azure storage account new --resourcegroupname " $groupName " --name " $groupName " --location " $location " --type " $storageAccountType " `
10
10
11
11
printf " \n3. Uploading a virtual hard disk"
12
- azure vhd add -- resourcegroupname " $groupName " --destination https://" $groupName " .blob.core.windows.net/test/test.vhd --localfilepath $( dirname $0 ) /test.vhd
12
+ result= ` azure vhd add -o -- resourcegroupname " $groupName " --destination https://" $groupName " .blob.core.windows.net/test/test.vhd --localfilepath $( dirname $0 ) /test.vhd`
13
13
14
14
printf " \n4. Downloading a virtual hard disk"
15
15
You can’t perform that action at this time.
0 commit comments