MarioSchwalbe
MarioSchwalbe
Same for me on Mac OS X 10.12.5 and 1.7.8. Followed the steps in the 2nd comment. SIP is enabled. Is there any way to get that to work? This...
Some remarks: 1. It is quite hard to match the source and the output. The source prints the version, but the output shows paths. 2. Global variables (even in multiple...
In fact, both use cases do make sense. If it is the same global scope, included taskfiles can overwrite variables of their parent taskfile to allow further customization. For instance,...
About hiding tasks. A more flexible solution would be to automatically hide tasks whose `desc:` expands to the empty string. This way one could pass a variable at the include...
Hi, I'm also running C++ build systems (`meson`) on my CI with task. Since, they already build in parallel, what is the actual benefit of any more parallelization within task?...
> Hi @MarioSchwalbe, in my case I would have a certain number of tasks that can be parallelize, not only `make` tasks. My goal is to get `n_cpu(make) + n_cpu(Task)...
Hi, this is because point 1 (`variables declared in the task definition`) has precedence. You can use the `default` function in something like this: ```yml build: vars: PARAM: '{{ .PARAM...
> As an aside - @MarioSchwalbe, I see that in your repro example, you are including the same Taskfile twice with two different namespaces. Is this a common setup for...