mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
10 lines
126 B
Bash
Executable file
10 lines
126 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. scripts.inc
|
|
|
|
for dir in $DEVEL; do
|
|
echo $dir
|
|
(cd $dir && make build BUILDFLAGS="$BUILDFLAGS")
|
|
done
|