Replies: 1 comment
-
Found a workaround using tasks: [vars]
myvar = "myvar_value"
[tasks.test]
run = [
"echo 'test'",
"echo '{{vars.myvar}}'",
]
[hooks]
enter = 'mise run test' Now works nicely! I guess it isn't supported by default for performance reasons |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently the following does nothing, not even test is printed:
If the second echo is commented, then
test
is printed again. It would be great to be able to useenv
/vars
values when usinghooks
.Beta Was this translation helpful? Give feedback.
All reactions