brew bundle reportando "Error: comando desconocido: bundle"

3

Estoy completamente desconcertado por este. He reformulado mis scripts de instalación para usar la nueva función brew bundle . Sin embargo, estoy recibiendo "Error: comando desconocido: paquete"

$ which brew
/usr/local/bin/brew

$ brew -v
Homebrew 0.9.5

$ brew doctor
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry and just ignore them. Thanks!

Warning: You have a curlrc file
If you have trouble downloading packages with Homebrew, then maybe this
is the problem? If the following command doesn't work, then try removing
your curlrc:
  curl http://github.com

$ brew update
Already up-to-date.

$ cat ~/.dotfiles/install/brewfile-basic
# Important early installs

install hub # https://hub.github.com
install git-extras # https://github.com/visionmedia/git-extras
install bash-completion # http://bash-completion.alioth.debian.org

# Cleaning up Brew caches

linkapps
cleanup
prune

$ brew bundle ~/.dotfiles/install/brewfile-basic
Error: Unknown command: bundle

$ brew bundle
Error: Unknown command: bundle

En todas las demás formas, brew está funcionando.

¿Alguna idea? ¿Esta característica no está en la compilación actual?

- Christopher Allen

    
pregunta Christopher Allen 05.10.2014 - 22:45

2 respuestas

4

Según mi pregunta sobre este tema en la sección de problemas del repositorio de homebrew, brew bundle ha quedado en desuso.

enlace

    
respondido por el Christopher Allen 06.10.2014 - 01:01
1

En esencia, todos los comandos que tenía en su Brewfile se pueden usar en un script de bash.

Si desea tener un solo archivo para su lista de paquetes, uno por línea, y leerlo desde su script de bash, puede hacer brew install $(cat my-file-with-dependencies) .

Supongamos que tiene brewfile-basic :

hub
git-extras
bash-completion

Ahora crea brewbundle.sh :

brew install $(cat brewfile-basic)

# Cleaning up Brew caches

brew linkapps
brew cleanup
brew prune

No has ejecutado este comando por un tiempo. En los últimos meses, se dijo que estaba en desuso.

    
respondido por el Somebody still uses you MS-DOS 23.10.2014 - 07:50

Lea otras preguntas en las etiquetas