-
Notifications
You must be signed in to change notification settings - Fork 1.3k
chore: optimize devcontainer for Codespaces prebuilds #55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -12,6 +12,6 @@ | |||||
| ] | ||||||
| } | ||||||
| }, | ||||||
| "onCreateCommand": "pip install pytest && npm install -g @github/copilot && gh extension install github/gh-copilot", | ||||||
| "onCreateCommand": "pip install pytest && npm install -g @github/copilot && (gh extension install github/gh-copilot || true)", | ||||||
|
||||||
| "onCreateCommand": "pip install pytest && npm install -g @github/copilot && (gh extension install github/gh-copilot || true)", | |
| "onCreateCommand": "pip install pytest && npm install -g @github/copilot && (gh copilot --help >/dev/null 2>&1 || gh extension install github/gh-copilot)", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR description says install commands were moved from
postCreateCommandtoonCreateCommand, but this diff only modifies an existingonCreateCommand(there is nopostCreateCommandin the file/repo). Please update the PR description (or the config) so it accurately reflects the actual change being made.