mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-09-12 08:02:00 +02:00
13 lines
226 B
Bash
Executable File
13 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
|
|
action=$@
|
|
|
|
for directory in $(find . -name unit_tests)
|
|
do
|
|
home=`pwd`
|
|
cd $directory
|
|
[ -z $QMAKESPEC ] && { qmake || exit 1; } || { qmake -spec $QMAKESPEC || exit 1; }
|
|
$action || exit 1
|
|
cd $home
|
|
done
|