Skip to content

Commit

Permalink
Fixed command for listing domains required for Codespaces
Browse files Browse the repository at this point in the history
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'.
  • Loading branch information
StefanFB authored Dec 31, 2024
1 parent d25344a commit fe026af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you see rejected connections, make sure the domains documented by the `/meta`

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

`gh api meta | jq .domains.codespaces`
`gh api meta --jq .domains.codespaces`

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

Expand Down

0 comments on commit fe026af

Please sign in to comment.