diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-12-19 23:29:09 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-12-19 23:29:09 +0400 |
commit | d8c4598f8067919fcce4592cf53e9bcd51375590 (patch) | |
tree | 48caa65a3c91219c020b3976e5a66f500d12563a | |
parent | 89c022a4f2060edd7304547ae77a7154199cc175 (diff) |
Makefile: ~/.config/sites directory creation added
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ all: full: config scripts git desktop directory config: - mkdir -p $(CONFDIR) + mkdir -p $(CONFDIR)/sites $(COPY) config/bash/bashrc $(BASHRC) $(COPY) config/zsh/zshrc $(ZSHRC) $(COPY) config/lf $(CONFDIR) @@ -35,7 +35,7 @@ config: $(COPY) config/x11 $(CONFDIR) $(COPY) config/zathura $(CONFDIR) $(COPY) config/mimeapps.list $(CONFDIR) - $(COPY) config/sites/bookmarks.txt $(CONFDIR) + $(COPY) config/sites/bookmarks.txt $(CONFDIR)/sites $(LINK) $(CONFDIR)/shell/profile $(BASHPROFILE) $(LINK) $(CONFDIR)/shell/profile $(ZPROFILE) |