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
When executing ./run.sh, I would have expected to see
task: [dir1:run] echo $FOO $BAR
Hello World
task: [dir2:run] echo $FOO $BAR
Hello World
task: [dir1:run] echo $FOO $BAR
Hello World # Note this correctly says "Hello World"
task: [dir2:run] echo $FOO $BAR
World World
But instead, I am seeing
task: [dir1:run] echo $FOO $BAR
Hello World
task: [dir2:run] echo $FOO $BAR
Hello World
task: [dir1:run] echo $FOO $BAR
World World # Why has $FOO been modified in the scope of dir1???
task: [dir2:run] echo $FOO $BAR
World World
This may not be the simplest form of the reproduction but it mimics the scenario under which I experienced it.
The text was updated successfully, but these errors were encountered:
Please see this reproduction of the issue: https://github.com/lukejoshuapark/task-env-issue-reproduce
When executing
./run.sh
, I would have expected to seeBut instead, I am seeing
This may not be the simplest form of the reproduction but it mimics the scenario under which I experienced it.
The text was updated successfully, but these errors were encountered: