Skip to content

Commit 769405a

Browse files
author
Alexander (Sasha) Nosov
committed
Fixed several errors
1 parent a5685d6 commit 769405a

3 files changed

Lines changed: 96 additions & 150 deletions

File tree

samples/manage/.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
8+
{
9+
"name": "PowerShell: Launch Current File",
10+
"type": "PowerShell",
11+
"request": "launch",
12+
"script": "${file}",
13+
"args": []
14+
}
15+
]
16+
}

samples/manage/azure-arc-enabled-sql-server/modify-license-type/modify-arc-sql-license-type.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ if($null -ne $ExclusionTags){
140140
}
141141

142142
if (-not $TenantId) {
143-
$TenantId = (Get-AzContext).Tenant.Id
143+
$TenantId = (Get-AzContext).Tenant.Id
144144
Write-Output "No TenantId provided. Using current context TenantId: $TenantId"
145145
} else {
146146
Write-Output "Using provided TenantId: $TenantId"

0 commit comments

Comments
 (0)