From 85cee95a509448a63d333624c015b25d73ae4d18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Allen-Kristjan=20P=C3=A4ll?= Date: Tue, 10 Feb 2026 05:14:18 +0200 Subject: [PATCH] Makefile: reworked reset --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a7d4f07..a8c83d8 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,11 @@ default: $(MAKE) config.json .PHONY: default +reset: + $(MAKE) default + $(MAKE) .reset +.PHONY: reset + .generate-files-list: $(FILES) if ! echo $(FILES) | diff -q .files-list - >/dev/null 2>&1; then \ echo $(FILES) > .files-list; \ @@ -36,9 +41,6 @@ config.json: config.yaml .files-list $(FILES) ssh -o ControlPath=/tmp/ssh_mux_%h_%p_%r -O exit akpella; touch .reset -reset: .reset -.PHONY: reset - update: VER=$$(curl -fsSL https://stable.release.flatcar-linux.net/amd64-usr/current/version.txt | grep FLATCAR_VERSION= | cut -d = -f 2) && \ echo $${VER} && \