bashrc & zshrc: fix homebrew-install

This commit is contained in:
Mikaela Suomalainen 2014-05-01 13:55:44 +03:00
parent 632c4e8e56
commit c2b0bcb8db
2 changed files with 2 additions and 2 deletions

2
bashrc
View File

@ -507,7 +507,7 @@ if [ -f /usr/bin/dnf ]; then
fi
# Homebrew
alias homebrew-install="mkdir -p ~/.local;cd ~/.local;git clone https://github.com/Homebrew/homebrew.git;mkdir -p $HOME/.local/share/man/man1;ln -sf $HOME/.local/homebrew/bin/brew $HOME/.local/bin/brew;ln -sf $HOME/.local/homebrew/share/man/man1/brew.1 $HOME/.local/share/man/man1/brew.1;cd"
alias homebrew-install="mkdir -p ~/.local/bin;cd ~/.local;git clone https://github.com/Homebrew/homebrew.git;mkdir -p $HOME/.local/share/man/man1;ln -sf $HOME/.local/homebrew/bin/brew $HOME/.local/bin/brew;ln -sf $HOME/.local/homebrew/share/man/man1/brew.1 $HOME/.local/share/man/man1/brew.1;cd"
# Allow custom aliases to be put in .aliases or .bash_aliases .

2
zshrc
View File

@ -480,7 +480,7 @@ if [ -f /usr/bin/dnf ]; then
fi
# Homebrew
alias homebrew-install="mkdir -p ~/.local;cd ~/.local;git clone https://github.com/Homebrew/homebrew.git;mkdir -p $HOME/.local/share/man/man1;ln -sf $HOME/.local/homebrew/bin/brew $HOME/.local/bin/brew;ln -sf $HOME/.local/homebrew/share/man/man1/brew.1 $HOME/.local/share/man/man1/brew.1;cd"
alias homebrew-install="mkdir -p ~/.local/bin;cd ~/.local;git clone https://github.com/Homebrew/homebrew.git;mkdir -p $HOME/.local/share/man/man1;ln -sf $HOME/.local/homebrew/bin/brew $HOME/.local/bin/brew;ln -sf $HOME/.local/homebrew/share/man/man1/brew.1 $HOME/.local/share/man/man1/brew.1;cd"
# .aliases
if [ -f ~/.aliases ]; then