Skip to content

Commit

Permalink
Fix Makefile for aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
Gisson committed Jul 1, 2019
1 parent 8ae5808 commit 18764df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ if [[ $(uname) = "Darwin" ]];then
export PATH="/usr/local/opt/[email protected]/bin:$PATH:/usr/local/bin"
fi

if [[ -d "${HOME}/Library/Python/3.7/bin" ]];then
export PATH="$PATH:${HOME}/Library/Python/3.7/bin"
fi

(which go && export PATH="${PATH}:${HOME}/go/bin") &>/dev/null


Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version=0.1

all: install

install: zsh-git-prompt ~/.config/awesome ~/.zshrc ~/.Xresources ~/.screenrc ~/.bashrc ~/.vimrc ~/.vim/bundle
install: zsh-git-prompt ~/.config/awesome ~/.zshrc ~/.Xresources ~/.screenrc ~/.bashrc ~/.vimrc ~/.vim/bundle ~/.bash_aliases

zsh-git-prompt:
git clone https://github.com/olivierverdier/zsh-git-prompt.git
Expand Down Expand Up @@ -33,9 +33,10 @@ zsh-git-prompt:
vim \+PluginInstall \+qall


~/.bashrc: ~/.bash_aliases
~/.bashrc:
ln -sf ~/dotfiles/.bashrc ~/.bashrc


dist:
mkdir -p dotfiles-${version}
cp -r .vimrc .screenrc .Xresources .zshrc .config .bash* dotfiles-${version}
Expand Down

0 comments on commit 18764df

Please sign in to comment.