diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-24 00:39:11 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-24 00:39:11 +0200 |
commit | 9841ec8e1f7496f77e0cf903d03680d92fd72fdc (patch) | |
tree | 7de96ddc5e2b97785e6f29cbba2bcd20a18caf21 | |
parent | replace the t.me link with /void/ (diff) | |
download | egor-tensin.github.io-9841ec8e1f7496f77e0cf903d03680d92fd72fdc.tar.gz egor-tensin.github.io-9841ec8e1f7496f77e0cf903d03680d92fd72fdc.zip |
Makefile: refactoring
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -42,10 +42,11 @@ serve: $(jekyll) serve URL := http://localhost:4000/ +SKIP := /blog,/cv,/jekyll-theme,/sorting-algorithms,/void,/wireguard-config .PHONY: wget wget: - wget --no-verbose --recursive --no-parent --convert-links --adjust-extension -e robots=off --directory-prefix=.wget -X /blog,/cv,/jekyll-theme,/sorting-algorithms,/void,/wireguard-config -- '$(call escape,$(URL))' + wget --no-verbose --recursive --no-parent --convert-links --adjust-extension -e robots=off --directory-prefix=.wget -X '$(call escape,$(SKIP))' -- '$(call escape,$(URL))' .PHONY: view view: |