diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-05-06 21:11:52 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-05-06 21:11:58 -0700 |
commit | eed2f30ee1a512e632c304b67eb41ec4230e7dea (patch) | |
tree | 730c09ebdc57aec09fe745ecfca94829b032add3 | |
parent | 996ce5f101e597cf70bda0864f964b356a1005a3 (diff) | |
download | mu-eed2f30ee1a512e632c304b67eb41ec4230e7dea.tar.gz |
3846
Be more robust to stray files with numeric prefixes.
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build b/build index 970464b5..46e4b270 100755 --- a/build +++ b/build @@ -90,7 +90,7 @@ older_than tangle/tangle tangle/*.cc && { noisy_cd .. # no effect; just to show us returning to the parent directory } -LAYERS=$(./enumerate/enumerate --until $UNTIL_LAYER |grep -v '.mu$') +LAYERS=$(./enumerate/enumerate --until $UNTIL_LAYER |grep '.cc$') older_than mu.cc $LAYERS enumerate/enumerate tangle/tangle && { # no update here; rely on 'update' calls downstream ./tangle/tangle $LAYERS > mu.cc |