mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-26 18:51:50 +02:00
16 lines
338 B
Bash
Executable File
16 lines
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 |