mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-19 09:47:20 +01:00
12 lines
175 B
Bash
Executable File
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 |