5876866565
hopefully that's the last of it
13 lines
145 B
Bash
Executable File
13 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. scripts.inc
|
|
|
|
for dir in $DEVEL; do
|
|
echo $dir
|
|
(cd $dir && make develop BUILDFLAGS="$BUILDFLAGS")
|
|
done
|
|
|
|
qt/runanki "$@"
|