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