mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
15 lines
No EOL
295 B
Bash
Executable file
15 lines
No EOL
295 B
Bash
Executable file
#!/bin/bash
|
|
set -e;
|
|
|
|
COFFEE=node_modules/.bin/coffee
|
|
|
|
echo Compiling test/unit/coffee;
|
|
$COFFEE -o test/unit/js -c test/unit/coffee;
|
|
|
|
for dir in modules/*;
|
|
do
|
|
if [ -d $dir/test/unit ]; then
|
|
echo Compiling $dir/test/unit/coffee;
|
|
$COFFEE -o $dir/test/unit/js -c $dir/test/unit/coffee;
|
|
fi
|
|
done |