Add existing directory catch to git clone steps

This commit is contained in:
Evie Litherland-Smith 2023-05-26 13:00:52 +01:00
parent 87a6c0cd55
commit 3851cd367c

View file

@ -43,10 +43,10 @@ $(CONFIG_DIR) $(HOMEMANAGER_CONFIG_DIR) $(BIN_DIR):
mkdir -p $@
$(CONFIG_DIR)/nvim: $(CONFIG_DIR)
git clone $(NVIM_REPO) $@
[ -d $@ ] && touch $@ || git clone $(NVIM_REPO) $@
$(CONFIG_DIR)/hypr: $(CONFIG_DIR)
git clone $(HYPR_REPO) $@
[ -d $@ ] && touch $@ || git clone $(HYPR_REPO) $@ | continue
$(CONFIG_DIR)/waybar: $(CONFIG_DIR)
git clone $(WAYBAR_REPO) $@
[ -d $@ ] && touch $@ || git clone $(WAYBAR_REPO) $@ | continue