diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-07-23 19:49:29 +0000 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-07-23 19:49:29 +0000 |
commit | 3fafb10ca6800b1e8f23cd64690dddab1b2705d9 (patch) | |
tree | a083ca186d7cf356377eacbe8262f89df19716fa /Makefile | |
parent | c55e14868abb14b93ef3b38cf507afa23a987ce3 (diff) |
Better symlinking
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ help: @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' install: ## Install the symlink - ln -s $(CURDIR)/tmux.config ~/.tmux.conf + ln -sf $(CURDIR)/tmux.config ~/.tmux.conf uninstall: ## Remove the symlink [[ -L ~/.muttrc ]] && rm ~/.tmux.conf |