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
Consider the following example where make-env task produces a .env file and my-task task depends on make-env and loads .env. I would expect to see MY_VAR = MY_VALUE after running the task my-task command, but it is MY_VAR = instead. It seems like it loads the dotenv file first (but does not fail because the file does not exist yet?) and then executes all dependencies.
Consider the following example where
make-env
task produces a.env
file andmy-task
task depends onmake-env
and loads.env
. I would expect to seeMY_VAR = MY_VALUE
after running the task my-task command, but it isMY_VAR =
instead. It seems like it loads the dotenv file first (but does not fail because the file does not exist yet?) and then executes all dependencies.The text was updated successfully, but these errors were encountered: