From 15b22b9dc61f5a3a9bbc49c452d29829a5dc5abe Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Fri, 2 Sep 2022 18:18:15 +0300 Subject: [PATCH] Fix the makefile Signed-off-by: Ari Archer --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d399227..f515f61 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ build: npm run build +netlifyapis: + sh ./scripts/netlifyapis.sh + clean: [ -z "${CI}" ] || rm -rfv requirements.txt \ README.md \ @@ -9,7 +12,6 @@ clean: .vscode \ .github \ -netlify: build clean - sh ./scripts/netlifyapis.sh +netlify: build netlifyapis clean .PHONY: build clean netlify