v0.0.20
Added
-
Added an
Import.Alias
built-in variable, usable inside packs, containing the
alias under which the pack was imported. Consider the following import:Import: bar: github.com/bilus/foo
When you run the task below, defined inside the
foo
pack, it'll print "bar":whoami: | echo ${Oya[Import.Alias]}
-
Added build for Apple Silicon processors
arm64
.
Changed
- Report an error if a
Require
orReplace
directive appears in anOyafile
without aProject
directive; you can manage an Oya project dependencies in
the top-levelOyafile
.
Fixed
- Ensure non-zero exit code from a command in Oya tasks, including sub-commands,
propagates to the shell invokingoya run
, even withoutset -e
.