From 619d33746c45dc9a78e98dfd1d5e53f97b3a5121 Mon Sep 17 00:00:00 2001 From: fedor Date: Wed, 7 Sep 2022 16:31:04 -0400 Subject: [PATCH] Install Ruby from brew --- templates/base.pkr.hcl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/templates/base.pkr.hcl b/templates/base.pkr.hcl index 1b3df56..a7feaf7 100644 --- a/templates/base.pkr.hcl +++ b/templates/base.pkr.hcl @@ -62,11 +62,7 @@ build { provisioner "shell" { inline = [ "source ~/.zprofile", - "brew install rbenv", - "echo 'if which rbenv > /dev/null; then eval \"$(rbenv init -)\"; fi' >> ~/.zprofile", - "source ~/.zprofile", - "rbenv install 3.0.4", - "rbenv global 3.0.4", + "brew install ruby", "sudo gem install bundler", ] }