From a75ca5392ac97e7aa0322c42b8c133b81d5d0b1b Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Thu, 18 Apr 2024 08:07:32 +0200 Subject: [PATCH] added prep to makefile make is good, make is life, use make now everything works with a single make (good for devops ci/cd too) --- makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index dee1960..7ee82c5 100644 --- a/makefile +++ b/makefile @@ -2,8 +2,11 @@ default: build -build: +prep: + git submodule update --init --recursive + +build: prep hugo -run: +run: prep hugo server