File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
examples/compute-management Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,10 @@ subId=`echo $contextResult | jq '.Subscription.SubscriptionId' --raw-output`
17
17
18
18
subnetId=" /subscriptions/$subId /resourceGroups/$groupName /providers/Microsoft.Network/virtualNetworks/test/subnets/test"
19
19
20
- echo -n " $subnetId " > " $BASEDIR /$groupName .subnetIdFile"
21
-
22
20
printf " \n4. Create network interface with:\r\nsubId='%s' \r\n& \r\nsubnetId='$subnetId '.\n" " $subId "
23
- azure network interface create --name test --resourcegroupname " $groupName " --location " $location " --subnetid @ " $BASEDIR / $groupName .subnetIdFile "
24
-
25
- rm -f " $BASEDIR / $groupName .subnetIdFile "
21
+ export MSYS_NO_PATHCONV=1
22
+ azure network interface create --name test --resourcegroupname " $groupName " --location " $location " --subnetid " $subnetId "
23
+ export MSYS_NO_PATHCONV=
26
24
27
25
nicId=" /subscriptions/$subId /resourceGroups/$groupName /providers/Microsoft.Network/networkInterfaces/test"
28
26
You can’t perform that action at this time.
0 commit comments