summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2025-09-09 21:46:50 +0200
committerAhmed AbdelHalim <[email protected]>2025-09-09 21:59:52 +0200
commite3aed3022ff51a5f3b05cc5b8a5076199075c6f1 (patch)
treecb418878a4f7c000b3c4784c93bc6b8d8faace16 /Makefile
parent81ca75de8ea7b010203a2036fc02779da8fdadfd (diff)
Add install/uninstall scripts
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6100532..90bec4b 100644
--- a/Makefile
+++ b/Makefile
@@ -29,6 +29,11 @@ lint-js:
@echo "Linting JavaScript files..."
npx eslint static/js/*.js
+lint-shell:
+ @echo "Linting shell files..."
+ shellcheck deployment/install.sh
+ shellcheck deployment/uninstall.sh
+
deps:
@echo "Downloading Go dependencies..."
go mod download
@@ -60,5 +65,5 @@ clean:
rm -rf dist/
@echo "Clean complete!"
-lint: lint-go lint-js lint-html lint-css
+lint: lint-go lint-js lint-html lint-css lint-shell
@echo "All linting complete!"