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
a:
echo "A"
b:
echo "B"
# `a` runs before `c` and `b` runs after `c`
c: a && b
echo "C"
d: c
echo "D"
When running just d, I see the output sequence "A C B D", which looks good. However, could the output ever be "A C D B"?
According to the "Dependencies" documentation, b is only guaranteed to run after c, but it is not clear, if b could run after d and still be considered expected behavior. This may be worth documenting.
The text was updated successfully, but these errors were encountered:
Suppose I have the following Justfile:
When running
just d
, I see the output sequence "A C B D", which looks good. However, could the output ever be "A C D B"?According to the "Dependencies" documentation,
b
is only guaranteed to run afterc
, but it is not clear, ifb
could run afterd
and still be considered expected behavior. This may be worth documenting.The text was updated successfully, but these errors were encountered: