diff options
author | EuAndreh <eu@euandre.org> | 2025-05-11 07:58:03 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-11 07:58:03 -0300 |
commit | 04c91c40d548bb70062fcadeeeea37fd4319e066 (patch) | |
tree | e6c9c2d04de7544e5d3b0f2d48076c1da97a8975 /mkdeps.sh | |
parent | src/gistatic.go: Add missing trailing newline to usage() output (diff) | |
download | gistatic-04c91c40d548bb70062fcadeeeea37fd4319e066.tar.gz gistatic-04c91c40d548bb70062fcadeeeea37fd4319e066.tar.xz |
Finish branches.html and setup i18n of manpages and HTML strings
Diffstat (limited to '')
-rwxr-xr-x | mkdeps.sh | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -13,8 +13,18 @@ mains() { find src tests -name '*.go' | grep '/main\.go$' } +docs() { + find doc/*.adoc +} + +pos() { + find po/ -name '*.po' | grep -v '^po/doc/' +} + libs | varlist 'libs.go' mains | varlist 'mains.go' +docs | varlist 'manpages.N.adoc' +pos | varlist 'sources.po' find tests/functional/*/*.go -not -name main.go | varlist 'functional-tests/lib.go' find tests/functional/*/main.go | varlist 'functional-tests/main.go' |