sources from dynamic list of files
sources of a task from a dynamic list of files?
I'm builing a collection of reusable tasks in a monorepo and many of them accept a list of files to operate on. This list could be from the output of find or ripgrep or something similar. These tasks accept a FILES variable which I'm able to manipulate into the proper format for use in the task command. I'm unable, however, to set the sources of the task based on this variable.
To be clear, the list of files is something like ['file1.txt', 'file2.txt', 'file3.txt']. It is not a pattern, and it is not fixed length....[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
