PowerShell7/build.sh
Andrew Schwartzmeyer cc05381fe6 Add quickly written build scripts
These are from from correct.
2015-11-23 17:54:30 -08:00

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