From d8f2af878b3fff170d4213381df1be1315eaea02 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sun, 19 Mar 2023 19:18:19 +0100 Subject: [PATCH] split refresh and sync --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 69ce6fd..7ce5d35 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,15 @@ VC = git # Hide some verbose messages from Make MAKEFLAGS += --no-print-directory -all: sync +all: full-sync refresh: @$(VC) pull +full-sync: + @$(MAKE) refresh + @$(MAKE) sync + # === All platforms == sync-dotconfig: @@ -31,7 +35,6 @@ sync-unison: # === Specific platforms == sync: - @$(MAKE) refresh ifeq ($(shell grep -c "archlinux" /proc/version), 1) # Arch @$(MAKE) sync-dotconfig