Skip to content

Commit

Permalink
build: fix mkdir /home/vscode/go/pkg: permission denied (#14162)
Browse files Browse the repository at this point in the history
Signed-off-by: Mason Malone <[email protected]>
  • Loading branch information
MasonM authored Feb 10, 2025
1 parent a776b45 commit 96789ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/pre-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
kubectl cluster-info

# install kit
make kit

# install protocol buffer compiler (protoc)
sudo apt update
sudo apt install -y protobuf-compiler
Expand All @@ -24,6 +21,9 @@ sudo chown vscode:vscode /home/vscode/go || true
sudo chown vscode:vscode /home/vscode/go/src || true
sudo chown vscode:vscode /home/vscode/go/src/github.com || true

# install kit
make kit

# download dependencies and do first-pass compile
kit build

Expand Down

0 comments on commit 96789ae

Please sign in to comment.