diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-12 19:12:52 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-12 19:12:52 -0700 |
commit | 12cc442f4aa4286150aa12316e74da38bc35b96c (patch) | |
tree | e6674f8eff6dd1795d079c847f18305236856da5 | |
parent | fca0ebbe0cc01d37e47822d8a62ea062a845f33d (diff) | |
download | mu-12cc442f4aa4286150aa12316e74da38bc35b96c.tar.gz |
1361
This one layer had grown a dependency on a later layer. I could swear I ran all the tests when I fixed the test harness in 1358..
-rw-r--r-- | 038scheduler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/038scheduler.cc b/038scheduler.cc index 99ced920..c6fb712d 100644 --- a/038scheduler.cc +++ b/038scheduler.cc @@ -6,7 +6,7 @@ recipe f1 [ start-running f2:recipe # wait for f2 to run { - loop-unless 1:integer + jump-unless 1:integer, -1:literal } ] recipe f2 [ @@ -177,7 +177,7 @@ recipe f1 [ start-running f2:recipe, 3:literal # wait for f2 to run { - loop-unless 1:integer + jump-unless 1:integer, -1:literal } ] recipe f2 [ |