mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
Tap bundle
and services
in Codespaces
- Yes, I wanted to do more Homebrew stuff from Codespaces on my iPad because I couldn't be bothered to get out of bed and walk downstairs to get my laptop. - For that I needed my `Homebrew/brew` branch and `brew services` tapped, with sufficient permissions for write access so I could push commits. - So I thought I'd do `bundle` as well as it seemed like another "would maybe use Codespaces for this" tap.
This commit is contained in:
parent
2374e988d4
commit
8b3be30a83
@ -9,6 +9,20 @@
|
||||
"onCreateCommand": ".devcontainer/on-create-command.sh",
|
||||
|
||||
"customizations": {
|
||||
"codespaces": {
|
||||
"repositories": {
|
||||
"Homebrew/homebrew-bundle": {
|
||||
"permissions": {
|
||||
"contents": "write"
|
||||
},
|
||||
"Homebrew/homebrew-services": {
|
||||
"permissions": {
|
||||
"contents": "write"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"vscode": {
|
||||
// Installing all necessary extensions for vscode
|
||||
// Taken from: .vscode/extensions.json
|
||||
|
@ -23,6 +23,9 @@ brew cleanup
|
||||
|
||||
# actually tap homebrew/core, no longer done by default
|
||||
brew tap --force homebrew/core
|
||||
# tap some other repos so codespaces can be used for developing multiple taps
|
||||
brew tap homebrew/bundle
|
||||
brew tap homebrew/services
|
||||
|
||||
# install some useful development things
|
||||
sudo apt-get update
|
||||
|
Loading…
x
Reference in New Issue
Block a user