mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
maint/build ~ polish and add commentary for initialization workaround
This commit is contained in:
parent
39cea3a159
commit
d7b6626f70
1 changed files with 9 additions and 5 deletions
|
@ -5,18 +5,22 @@
|
||||||
[config]
|
[config]
|
||||||
min_version = "0.26.2"
|
min_version = "0.26.2"
|
||||||
default_to_workspace = false
|
default_to_workspace = false
|
||||||
init_task = "_init"
|
init_task = "_init_task"
|
||||||
|
|
||||||
[config.modify_core_tasks]
|
[config.modify_core_tasks]
|
||||||
namespace = "core"
|
namespace = "core"
|
||||||
|
|
||||||
### initialization
|
### initialization
|
||||||
|
|
||||||
[tasks._init]
|
### * note: the task executed from 'init_task' ignores dependencies; workaround is to run a secondary task via 'run_task'
|
||||||
private = true
|
|
||||||
run_task = "_init_"
|
|
||||||
|
|
||||||
[tasks._init_]
|
[tasks._init_task]
|
||||||
|
# dependencies are unavailable
|
||||||
|
# * delegate (via 'run_task') to "real" initialization task ('_init') with full capabilities
|
||||||
|
private = true
|
||||||
|
run_task = "_init"
|
||||||
|
|
||||||
|
[tasks._init]
|
||||||
private = true
|
private = true
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"_init-vars",
|
"_init-vars",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue