commit 0623b4cace16127ab6f4fd075444e9c196a5bec0 parent a81a8740186d1b9be57f33fc3b376e8e2754180a Author: hhvn <dev@hhvn.uk> Date: Fri, 15 Apr 2022 14:17:35 +0100 dwmbar makefile pulls changes Diffstat:
M | .scripts/dwmbar/Makefile | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.scripts/dwmbar/Makefile b/.scripts/dwmbar/Makefile @@ -10,6 +10,8 @@ build: get [ -d blocks ] && { cd blocks; make; } || false get: - [ ! -d blocks ] && { git clone git://hhvn.uk/s2dblocks blocks || exit 1; } || true + [ ! -d blocks ] && \ + { git clone git://hhvn.uk/s2dblocks blocks || exit 1; } || \ + { cd blocks; git pull; true; } .PHONY: install build get