-for plan in $(find . -type d -depth 1 | grep -v .git); do
+for plan in $(find . -maxdepth 1 -type d | grep -v .git); do
- for dir in $(find $plan -type d -depth 1); do
+ for dir in $(find $plan -maxdepth 1 -type d); do
Btw how do I run the tests? When I tried I hit:
Error: initializing: reading config: open up.json: no such file or directory
(Prompted by https://github.com/tj/hooks's
make test
) I think you meant maxdepth?Btw how do I run the tests? When I tried I hit:
Do I need to setup some base config?