mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
14 lines
170 B
Bash
Executable file
14 lines
170 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. scripts.inc
|
|
|
|
rm -rf dist
|
|
|
|
for dir in $DEVEL; do
|
|
echo $dir
|
|
(cd $dir && make build BUILDFLAGS="$BUILDFLAGS")
|
|
done
|
|
|
|
helpers/rename-with-buildhash
|