When attempting to install hombrew i get the following error:
```
+ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
bash: /usr/bin/ruby: No such file or directory
```
Does anyone know a way around this?
Community moderators have prevented the ability to post new answers.
Which docker image are you using in your Pipeline? You may be able to find one that already has Homebrew installed.
im not using docker, Im using a ruby environment and its failing when i attempt to install homebrew
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Pipelines uses Docker for the environment.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Pipelines support docker but in this situation im just running a standard ruby env
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think you misunderstood me: Pipelines doesn't just support Docker, Pipelines is Docker. The Ruby environment you're running is a Docker container, as defined in the first line of bitbucket-pipelines.yml.
You may be able to specify an environment that already has homebrew installed, or you can build your own image if you'd prefer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ah thank you for the explanation. Things are clearer now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.