From 203ff705a209b1acdd5a5c02a0f20bf68a36a2a4 Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Thu, 9 Nov 2023 21:40:45 +0100 Subject: [PATCH] v2.5.1 Signed-off-by: Jeroen Oudshoorn --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 97fd6edd..5ee5327b 100644 --- a/Makefile +++ b/Makefile @@ -48,15 +48,15 @@ $(SDIST): setup.py pwnagotchi python3 setup.py sdist # Building the image requires packer, but don't rebuild the image just because packer updated. -$pwnagotchi: | $(PACKER) +pwnagotchi: | $(PACKER) # If the packer or ansible files are updated, rebuild the image. -$pwnagotchi: $(SDIST) builder/pwnagotchi.json.pkr.hcl builder/raspberrypi32.yml builder/raspberrypi64.yml builder/orangepi.yml builder/extras/nexmon.yml $(shell find builder/data -type f) +pwnagotchi: $(SDIST) builder/pwnagotchi.json.pkr.hcl builder/raspberrypi32.yml builder/raspberrypi64.yml builder/orangepi.yml builder/extras/nexmon.yml $(shell find builder/data -type f) cd builder && packer init pwnagotchi.json.pkr.hcl && sudo $(UNSHARE) $(PACKER) build -var "pwn_hostname=$(PWN_HOSTNAME)" -var "pwn_version=$(PWN_VERSION)" pwnagotchi.json.pkr.hcl .PHONY: image -image: $pwnagotchi +image: pwnagotchi clean: - python3 setup.py clean --all