FreeCalypso > hg > fc-selenite
view scripts/test-make.sh @ 180:e69e6b9a28b5
src/g23m-aci: sync with Magnetite
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 04 Jan 2020 21:44:15 +0000 |
parents | c8a4561ef581 |
children |
line wrap: on
line source
#!/bin/sh set -e for i in * do echo $i if [ $i != config ] then (cd $i; make) fi done