Skip to content

Commit fe026af

Browse files
authored
Fixed command for listing domains required for Codespaces
The 'gh api meta | jq .domains.codespaces' did not work for me in Command Prompt. It gives an error: "'jq' is not recognized as an internal or external command, operable program or batch file." Changing the command to 'gh api meta --jq .domains.codespaces' gives the desired output. This is also consistent with the manual after 'gh api meta -help'.
1 parent d25344a commit fe026af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/codespaces/troubleshooting/troubleshooting-your-connection-to-github-codespaces.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you see rejected connections, make sure the domains documented by the `/meta`
3636

3737
To get the list of domains required by {% data variables.product.prodname_github_codespaces %}, execute the following command using {% data variables.product.prodname_cli %}:
3838

39-
`gh api meta | jq .domains.codespaces`
39+
`gh api meta --jq .domains.codespaces`
4040

4141
### "We are having trouble fetching your codespace information"
4242

0 commit comments

Comments
 (0)