Skip to content

Commit ea24cca

Browse files
committed
Fix powershell
1 parent 8c76a69 commit ea24cca

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

includes/functions-migrate-v4-linuxfxversion.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,17 @@ If you are migrating to .NET Functions isolated worker process, use either `DOTN
2121
```azurecli
2222
az functionapp config set --name <APP_NAME> --resource-group <RESOURCE_GROUP_NAME> --linux-fx-version "Java|11"
2323
```
24-
The `--linux-fx-version` value must match your target Java version. To find all supported values, see [Valid `linuxFxVersion` values](../articles/azure-functions/functions-app-settings.md#valid-linuxfxversion-values).
24+
The `--linux-fx-version` value must match your target Java version.
2525
:::zone-end
2626
::: zone pivot="programming-language-javascript,programming-language-typescript"
2727
```azurecli
2828
az functionapp config set --name <APP_NAME> --resource-group <RESOURCE_GROUP_NAME> --linux-fx-version "Node|16"
2929
```
30-
The `--linux-fx-version` value must match your target Node.js version. To find all supported values, see [Valid `linuxFxVersion` values](../articles/azure-functions/functions-app-settings.md#valid-linuxfxversion-values).
31-
:::zone-end
32-
::: zone pivot="programming-language-powershell"
33-
```azurecli
34-
az functionapp config set --name <APP_NAME> --resource-group <RESOURCE_GROUP_NAME> --linux-fx-version "PowerShell|7.2"
35-
```
36-
The `--linux-fx-version` value must match your target PowerShell version. To find all supported values, see [Valid `linuxFxVersion` values](../articles/azure-functions/functions-app-settings.md#valid-linuxfxversion-values).
30+
The `--linux-fx-version` value must match your target Node.js version.
3731
:::zone-end
3832
::: zone pivot="programming-language-python"
3933
```azurecli
4034
az functionapp config set --name <APP_NAME> --resource-group <RESOURCE_GROUP_NAME> --linux-fx-version "Python|3.9"
4135
```
42-
The `--linux-fx-version` value must match your target PowerShell version. To find all supported values, see [Valid `linuxFxVersion` values](../articles/azure-functions/functions-app-settings.md#valid-linuxfxversion-values).
36+
The `--linux-fx-version` value must match your target PowerShell version.
4337
:::zone-end

0 commit comments

Comments
 (0)