diff options
| author | Ahmed AbdelHalim <[email protected]> | 2025-09-09 21:46:50 +0200 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2025-09-09 21:59:52 +0200 |
| commit | e3aed3022ff51a5f3b05cc5b8a5076199075c6f1 (patch) | |
| tree | cb418878a4f7c000b3c4784c93bc6b8d8faace16 /Makefile | |
| parent | 81ca75de8ea7b010203a2036fc02779da8fdadfd (diff) | |
Add install/uninstall scripts
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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!" |
