@@ -53,12 +53,12 @@ tasks:
5353 # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/deploy-cobra-mkdocs-versioned-poetry/Taskfile.yml
5454 go:cli-docs :
5555 desc : Generate command line interface reference documentation
56- dir : ./docsgen
56+ dir : ./internal/ docsgen
5757 cmds :
5858 # Command examples use os.Args[0] so the docs generation binary must have the same filename as the project
5959 - go build -o {{.PROJECT_NAME}}{{exeExt}}
6060 # The binary is invoked like this instead of `./{{.PROJECT_NAME}}` to remove the `./` chars from the examples
61- - PATH=. {{.PROJECT_NAME}} ../docs/commands
61+ - PATH=. {{.PROJECT_NAME}} ../../ docs/commands
6262
6363 # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml
6464 go:fix :
@@ -301,24 +301,24 @@ tasks:
301301 i18n:update :
302302 desc : Updates i18n files
303303 cmds :
304- - go run ./i18n/cmd/main.go catalog generate . > ./i18n/data/en.po
304+ - go run ./internal/ i18n/cmd/main.go catalog generate . > ./internal /i18n/data/en.po
305305
306306 i18n:pull :
307307 desc : Pull i18n files from transifex
308308 cmds :
309- - go run ./i18n/cmd/main.go transifex pull ./i18n/data
309+ - go run ./internal/ i18n/cmd/main.go transifex pull ./internal /i18n/data
310310
311311 i18n:push :
312312 desc : Push i18n files to transifex
313313 cmds :
314- - go run ./i18n/cmd/main.go transifex push ./i18n/data
314+ - go run ./internal/ i18n/cmd/main.go transifex push ./internal /i18n/data
315315
316316 i18n:check :
317317 desc : Check if the i18n message catalog was updated
318318 cmds :
319319 - task : i18n:pull
320- - git add -N ./i18n/data
321- - git diff --exit-code ./i18n/data
320+ - git add -N ./internal/ i18n/data
321+ - git diff --exit-code ./internal/ i18n/data
322322
323323 # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-mkdocs-task/Taskfile.yml
324324 website:check :
0 commit comments