Skip to content

Commit 5d54677

Browse files
authored
Fix command substitution syntax in community-support.md (#12641)
1 parent 3bef92d commit 5d54677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/docs-conceptual/install/community-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ sudo apt-get install jq libssl1.1 libunwind8 -y
104104
# Grab the latest tar.gz
105105
bits=$(getconf LONG_BIT)
106106
release=$(curl -sL https://api.github.com/repos/PowerShell/PowerShell/releases/latest)
107-
package=$(echo $release | jq -r ".assets[].browser_download_url" | grep "linux-arm${bits}.tar.gz")
107+
package=$(echo -E $release | jq -r ".assets[].browser_download_url" | grep "linux-arm${bits}.tar.gz")
108108
wget $package
109109

110110
# Make folder to put powershell

0 commit comments

Comments
 (0)