Skip to content

Commit

Permalink
Fixing typo in the code (#3179)
Browse files Browse the repository at this point in the history
There is typo in the code, leading to this error when running
Start-BcContainerAppDataUpgrade:

```
The term '=' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
```

BCContainerhelper version> 5.0.6-preview1069
  • Loading branch information
kine authored Sep 6, 2023
1 parent 6f020d2 commit 7e9064f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AppHandling/Start-NavContainerAppDataUpgrade.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function Start-BcContainerAppDataUpgrade {

$telemetryScope = InitTelemetryScope -name $MyInvocation.InvocationName -parameterValues $PSBoundParameters -includeParameters @()
try {
$containerPath = = ""
$containerPath = ""
if ($path) {
$containerPath = (Get-BcContainerPath -containerName $containerName -path $path -throw)
}
Expand Down

0 comments on commit 7e9064f

Please sign in to comment.