From 59d6da8a48c5e4951a458b28e46135b002c18d26 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 2 Oct 2020 16:45:11 +0200 Subject: [PATCH] [FIX] Disable systemd service enabling in CI --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ee3c110..31f158a 100644 --- a/Makefile +++ b/Makefile @@ -114,6 +114,9 @@ STOW = stow -t $(STOW_TARGET) -R -v YAY := yay -S --noconfirm --needed +# Used to disable some steps in CI +CI := + .PHONY: all all: install @@ -158,7 +161,7 @@ stow-scripts: scripts stow-ssh: ssh $(STOW) $< # Enable & start ssh-agent service - systemctl enable --now --user ssh-agent.service + [ -z "$(CI)" ] || systemctl enable --now --user ssh-agent.service stow-system-X: STOW_TARGET=/ stow-system-X: system-X