From 3036fcba0a3c585281512f3fd64e9de777d83e20 Mon Sep 17 00:00:00 2001
From: Justin Hayes <justinh@rahb.ca>
Date: Wed, 13 Mar 2024 08:55:49 -0400
Subject: [PATCH] Update Makefile

---
 Makefile | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index c669af0..6823ae2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,9 @@
-.PHONY: all install
+.PHONY: all clean install
+
+clean:
+	rm -rf node_modules
 
 all:
-	rm -rf node_modules
 	npm i
 	rm -f node_modules/@jimp/core/node_modules/.bin/mkdirp
 	rm -f node_modules/execa/node_modules/.bin/semver
@@ -10,4 +12,3 @@ all:
 
 install:
 	mv out/open-webui-assistant-darwin-arm64/open-webui-assistant.app ~/Applications/Open\ WebUI\ Assistant.app
-