Skip to content

Commit 3ff4a3d

Browse files
authored
Updated property for determining tar file (#3576)
1 parent 17251d7 commit 3ff4a3d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs-conceptual/azps-12.5.0/install-azps-offline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ platforms including Windows, Linux, and macOS.
5454
```powershell
5555
$tarSourceUrl = (
5656
Invoke-RestMethod -Uri https://api.github.com/repos/azure/azure-powershell/releases/latest |
57-
Select-Object -ExpandProperty assets | Where-Object content_type -eq 'application/x-gzip'
57+
Select-Object -ExpandProperty assets | Where-Object name -like Az-Cmdlets-*.tar.gz
5858
).browser_download_url
5959
```
6060

docs-conceptual/azps-13.4.0/install-azps-offline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ platforms including Windows, Linux, and macOS.
5454
```powershell
5555
$tarSourceUrl = (
5656
Invoke-RestMethod -Uri https://api.github.com/repos/azure/azure-powershell/releases/latest |
57-
Select-Object -ExpandProperty assets | Where-Object content_type -eq 'application/x-gzip'
57+
Select-Object -ExpandProperty assets | Where-Object name -like Az-Cmdlets-*.tar.gz
5858
).browser_download_url
5959
```
6060

docs-conceptual/azps-13.5.0/install-azps-offline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ platforms including Windows, Linux, and macOS.
5454
```powershell
5555
$tarSourceUrl = (
5656
Invoke-RestMethod -Uri https://api.github.com/repos/azure/azure-powershell/releases/latest |
57-
Select-Object -ExpandProperty assets | Where-Object content_type -eq 'application/x-gzip'
57+
Select-Object -ExpandProperty assets | Where-Object name -like Az-Cmdlets-*.tar.gz
5858
).browser_download_url
5959
```
6060

0 commit comments

Comments
 (0)