[to mods] How is your experience w AnswerOverflow?
Does Task have an equivalent to make's double-colon rules?
test::
target, and a Go makefile with a test::
target, include them both, and running make test
will run both sets of tests.
The key feature is that you don't have to manually specify a parent target to pull everything together like test: test-js test-go
- double-colon targets are just "extensible" without extra configuration....Way to ignore dotenv without env -i
Can the output task name mention the parent?
Running task when dependency is not up to date
Fedora Updated Release
Equivalence between sources and generates
sources
to the generates
. Take the following example:
```...Looping over files not working on Windows
--verbose
there is just no execution inside the for
....
Glob patterns in generates
Push permission
Is it possible to set an env value in a task from a variable passed in when call the task?
task start-service use_mocks=true
task start-service use_mocks=true
Possible to force execution of a specific task, but not its dependencies?
--force
, that also triggers the download dependencies as well.
Is there a way around this?...Dependency hangs on rebuild
No direct alternative to VAR ?= VALUE from make
Are variable unique across all imports ?
docker --format {{ .Name }}
How do use double quotes in cmd on windows?
cmds:
- cmd /c "SET VSCMD_START_DIR=%CD% && call ""%VSCOMNTOOLS%VsMSBuildCmd.bat"""
cmds:
- cmd /c "SET VSCMD_START_DIR=%CD% && call ""%VSCOMNTOOLS%VsMSBuildCmd.bat"""
Is it possible to get a list of just the environment variable (names) that are used from `dotenv`?
In included file, cannot set task dir with a variable containing absolute path

dotenv merges in inverse order?
.env
files usually work. They do not override values that are already set on the ENV. In the same way, we loop over the list of .env
files and only set the ENVs that were not previously set....