1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-19 09:47:20 +01:00
fwbuilder/unit_tests.sh
2010-02-28 17:10:12 +00:00

12 lines
175 B
Bash
Executable File

#!/bin/bash
action=$@
for directory in $(find . -name unit_tests)
do
home=`pwd`
cd $directory
qmake -spec $QMAKESPEC || exit 1
$action || exit 1
cd $home
done