From ed0f25051d12c057525c2e0a80302661892faab2 Mon Sep 17 00:00:00 2001 From: Hari Sekhon Date: Mon, 16 Sep 2019 17:10:15 +0100 Subject: [PATCH] updated Makefile --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b83c383b..8ef28d06 100644 --- a/Makefile +++ b/Makefile @@ -16,9 +16,10 @@ REPO := HariSekhon/DevOps-Bash-tools CODE_FILES := $(shell find . -type f -name '*.sh' -o -name .bashrc | sort) CONF_FILES := \ - .tmux.conf \ .ansible.cfg \ .editorconfig \ + .gitconfig \ + .tmux.conf \ .vimrc @@ -33,7 +34,7 @@ install: @if grep -Eq "(source|\.).+$${PWD##*/}/.bashrc" ~/.bashrc 2>/dev/null; then echo "already sourced in ~/.bashrc"; else echo "source $$PWD/.bashrc" >> ~/.bashrc; fi @f=""; [ -n "$$FORCE" ] && f="-f"; \ for filename in $(CONF_FILES); do \ - test -f "$$HOME/$$filename" || ln -sv $$f "$$PWD/$$filename" ~/; \ + test -f "$$HOME/$$filename" || ln -sv $$f "$$PWD/$$filename" ~; \ done .PHONY: test