We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cdf479b + 79d0d48 commit e6f8978Copy full SHA for e6f8978
articles/cloud-shell/troubleshooting.md
@@ -184,8 +184,8 @@ In order to **delete** your user settings Cloud Shell saves for you such as pref
184
Bash:
185
186
```
187
- token=$(az account get-access-token --resource "https://management.azure.com/" | jq -r ".accessToken")
188
- curl -X DELETE https://management.azure.com/providers/Microsoft.Portal/usersettings/cloudconsole?api-version=2017-12-01-preview -H Authorization:"Bearer $token"
+ token="Bearer $(az account get-access-token --resource "https://management.azure.com/" | jq -r ".accessToken")"
+ curl -X DELETE https://management.azure.com/providers/Microsoft.Portal/usersettings/cloudconsole?api-version=2017-12-01-preview -H Authorization:"$token"
189
190
191
PowerShell:
0 commit comments