commit b7b65871fcfd7015dc83b57474f07a894e7050f8 from: Omar Polo date: Thu Sep 15 16:36:09 2022 UTC alias `openrsync --rsync-path=openrsync' to ${RSYNC} commit - 0e30865e25224e82ab4d945df28096282e5b3c76 commit + b7b65871fcfd7015dc83b57474f07a894e7050f8 blob - c19267b008c44d7dca7bf62dae82ea27772ead43 blob + a2c1e0023fc93971d8ec1c0eb3b848b1f8655756 --- Makefile +++ Makefile @@ -1,5 +1,7 @@ # sed -n 's/^ //p' $? > $@ +RSYNC = openrsync --rsync-path=openrsync + .PHONY: all install publish all: @@ -36,8 +38,8 @@ serve-www: publish python3 -m http.server --directory www 8888 upload: - openrsync --rsync-path=openrsync --del -a gem/ antartica:/var/gemini/dots.omarpolo.com - openrsync --rsync-path=openrsync --del -a www/ antartica:/var/www/dots.omarpolo.com + ${RSYNC} --del -a gem/ antartica:/var/gemini/dots.omarpolo.com + ${RSYNC} --del -a www/ antartica:/var/www/dots.omarpolo.com clean: rm -rf gem www index.lsp