ios-samples/pre-commit.posix

12 строки
250 B
Bash
Executable File

#!/bin/sh
for dir in `find . -type d -maxdepth 1 | grep -v "\.$" | grep -v "\./\."`; do
if ! [ -f $dir/Makefile ]; then
mono --debug xcsv.exe $dir mdtool-build;
if [ $? != 0 ]; then
exit 1;
fi;
fi;
done;