diff options
author | Ori Bernstein <ori@eigenstate.org> | 2016-01-13 20:19:25 -0500 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2016-01-13 20:19:25 -0500 |
commit | 07c679fea620b32c8561e59f9a932e588814b993 (patch) | |
tree | d8e21df98cd7b7b109cb4da408cd00b7ecc44be0 /mbld | |
parent | 0d9ee65ef4fbb4f196a19bec0a4359a391900f04 (diff) | |
download | mc-07c679fea620b32c8561e59f9a932e588814b993.tar.gz |
Fix indentation.
Diffstat (limited to 'mbld')
-rw-r--r-- | mbld/test.myr | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/mbld/test.myr b/mbld/test.myr index c612e79..6c99fdf 100644 --- a/mbld/test.myr +++ b/mbld/test.myr @@ -24,14 +24,11 @@ const test = {b buildall(b) setdir(b, "") for tn in b.all - match gettarg(b.targs, tn) - | `Bin bt: - tests = std.sljoin(tests, buildtests(b, bt)) - | `Lib lt: - tests = std.sljoin(tests, buildtests(b, lt)) - | _: - /* nothing */ - ;; + match gettarg(b.targs, tn) + | `Bin bt: tests = std.sljoin(tests, buildtests(b, bt)) + | `Lib lt: tests = std.sljoin(tests, buildtests(b, lt)) + | _: /* nothing */ + ;; ;; for tn in b.all match gettarg(b.targs, tn) |