mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Fix make watch
for generated files (#20794)
- Don't rebuild the binary when generated files are updated, which is the case by-default when running `make watch`.
This commit is contained in:
parent
4f56ab3bf3
commit
293544587c
1 changed files with 1 additions and 1 deletions
|
@ -7,4 +7,4 @@ bin = "gitea"
|
|||
include_ext = ["go", "tmpl"]
|
||||
exclude_dir = ["modules/git/tests", "services/gitdiff/testdata", "modules/avatar/testdata"]
|
||||
include_dir = ["cmd", "models", "modules", "options", "routers", "services", "templates"]
|
||||
exclude_regex = ["_test.go$"]
|
||||
exclude_regex = ["_test.go$", "_gen.go$"]
|
||||
|
|
Loading…
Reference in a new issue