cc05381fe6
These are from from correct.
9 lines
138 B
Bash
Executable File
9 lines
138 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for dir in $(find . -maxdepth 2 -name project.json | parallel dirname)
|
|
do
|
|
pushd $dir
|
|
dnu build
|
|
popd
|
|
done
|