From 18764df4eab5ff47f89d0c2e17f3562577346c2c Mon Sep 17 00:00:00 2001 From: Jorge Heleno Date: Mon, 1 Jul 2019 10:26:20 +0100 Subject: [PATCH] Fix Makefile for aliases --- .bashrc | 4 ++++ Makefile | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index 332cdb9..146b6d5 100644 --- a/.bashrc +++ b/.bashrc @@ -56,6 +56,10 @@ if [[ $(uname) = "Darwin" ]];then export PATH="/usr/local/opt/terraform@0.11/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 diff --git a/Makefile b/Makefile index bc5a66e..b5bcd2a 100644 --- a/Makefile +++ b/Makefile @@ -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 @@ -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}