From 9f242f0a43894331641a61f0c62b072026854845 Mon Sep 17 00:00:00 2001 From: Walid Kayhal <3347810+waliid@users.noreply.github.com> Date: Wed, 23 Oct 2024 20:42:05 +0200 Subject: [PATCH] Use sudo to install bundler --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4eb5a83..cfb74c1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: ./run-vm-shell-command.sh $VM_NAME "rbenv install --skip-existing 3.3.2" ./run-vm-shell-command.sh $VM_NAME "echo \"export PATH=\"$HOME/.rbenv/bin:$PATH\"\" > ~/.zshrc" ./run-vm-shell-command.sh $VM_NAME "rbenv global 3.3.2" - ./run-vm-shell-command.sh $VM_NAME "gem install bundler -v 2.4.6" + ./run-vm-shell-command.sh $VM_NAME "sudo gem install bundler -v 2.4.6" ./run-vm-shell-command.sh $VM_NAME "curl --location https://github.com/shaka-project/shaka-packager/releases/download/v3.2.0/packager-osx-arm64 -o /opt/homebrew/bin/shaka-packager" ./run-vm-shell-command.sh $VM_NAME "chmod a+x /opt/homebrew/bin/shaka-packager" ./run-vm-shell-command.sh $VM_NAME "source ~/.zshrc"