You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
runme --version
runme version 3.9.4 (Homebrew) on 2024-11-21T22:49:56Z
Env file, named .env
export MY_VAR=SOME_VALUE
Runme playbook, named test.runme
```sh {"name":"env"}
echo "@@${MY_VAR}@@"
```
Invoking runme run with --filename doesn't read the variables from .env
runme run --all -y --filename test.runme
@@@@
Although runme run without --filename works OK
runme run --all -y
@@SOME_VALUE@@
The same inconsistent behaviour is happening when invoking runme tui.
The text was updated successfully, but these errors were encountered:
eshepelyuk
changed the title
Environment variables are not loaded from file when runme invoked with --filename flag
Environment vars not loaded from file when runme invoked with --filename flag
Nov 27, 2024
Hello
Let me describe the bug
.env
export MY_VAR=SOME_VALUE
test.runme
runme run
with--filename
doesn't read the variables from.env
runme run
without--filename
works OKThe same inconsistent behaviour is happening when invoking
runme tui
.The text was updated successfully, but these errors were encountered: