mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
12 lines
114 B
Bash
Executable file
12 lines
114 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. scripts.inc
|
|
|
|
rm -rf dist
|
|
|
|
for dir in $DEVEL; do
|
|
echo $dir
|
|
(cd $dir && make clean)
|
|
done
|