summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2023-05-24 22:11:04 +0200
committerGitHub <noreply@github.com>2023-05-24 20:11:04 +0000
commit1cf4d46bb194f236b3e0157bc2ec2583014cfa2e (patch)
tree2bfb946e6860771db32464888b984fa248187be6
parent395bb33e4c9712e570f597c3ca24a4c3c6acdaff (diff)
downloadgitea-1cf4d46bb194f236b3e0157bc2ec2583014cfa2e.tar.gz
gitea-1cf4d46bb194f236b3e0157bc2ec2583014cfa2e.zip
Reduce verbosity of dev commands (#24917)
### Before ``` $ make watch bash build/watch.sh make[1]: Entering directory '/Users/silverwind/git/gitea' make[1]: Entering directory '/Users/silverwind/git/gitea' GITEA_RUN_MODE=dev go run github.com/cosmtrek/air@v1.43.0 -c .air.toml rm -rf public/js public/css public/fonts public/img/webpack public/serviceworker.js NODE_ENV=development npx webpack --watch --progress ``` ### After ``` $ make watch GITEA_RUN_MODE=dev go run github.com/cosmtrek/air@v1.43.0 -c .air.toml NODE_ENV=development npx webpack --watch --progress ```
-rw-r--r--.air.toml2
-rw-r--r--Makefile4
-rw-r--r--build/watch.sh4
3 files changed, 5 insertions, 5 deletions
diff --git a/.air.toml b/.air.toml
index 6825118b95..d13f8c4f99 100644
--- a/.air.toml
+++ b/.air.toml
@@ -2,7 +2,7 @@ root = "."
tmp_dir = ".air"
[build]
-cmd = "make backend"
+cmd = "make --no-print-directory backend"
bin = "gitea"
delay = 1000
include_ext = ["go", "tmpl"]
diff --git a/Makefile b/Makefile
index fde7e990c5..6873cac811 100644
--- a/Makefile
+++ b/Makefile
@@ -413,11 +413,11 @@ lint-editorconfig:
.PHONY: watch
watch:
- bash build/watch.sh
+ @bash build/watch.sh
.PHONY: watch-frontend
watch-frontend: node-check node_modules
- rm -rf $(WEBPACK_DEST_ENTRIES)
+ @rm -rf $(WEBPACK_DEST_ENTRIES)
NODE_ENV=development npx webpack --watch --progress
.PHONY: watch-backend
diff --git a/build/watch.sh b/build/watch.sh
index 61e3dc40a2..5e8defa49c 100644
--- a/build/watch.sh
+++ b/build/watch.sh
@@ -1,8 +1,8 @@
#!/bin/bash
set -euo pipefail
-make watch-frontend &
-make watch-backend &
+make --no-print-directory watch-frontend &
+make --no-print-directory watch-backend &
trap 'kill $(jobs -p)' EXIT
wait