1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

maint/build ~ polish and add commentary for initialization workaround

This commit is contained in:
Roy Ivy III 2020-05-02 12:36:27 -05:00
parent 39cea3a159
commit d7b6626f70

View file

@ -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",