This commit is contained in:
Kartik K. Agaram 2021-08-11 19:44:20 -07:00
parent b8bebe9bbc
commit 982dfeb217
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ done
)
for f in shell/*.mu
do
test $# -gt 0 && test $1 != shell/$f && continue
test $# -gt 0 && test $1 != $f && continue
process $f
done
@ -69,7 +69,7 @@ done
)
for f in browse-slack/*.mu
do
test $# -gt 0 && test $1 != browse-slack/$f && continue
test $# -gt 0 && test $1 != $f && continue
process $f
done