summaryrefslogtreecommitdiffstats
path: root/.air.toml
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 /.air.toml
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 ```
Diffstat (limited to '.air.toml')
-rw-r--r--.air.toml2
1 files changed, 1 insertions, 1 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"]