mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
12 lines
145 B
Bash
Executable file
12 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 "$@"
|