mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-04 00:50:52 +00:00
6 lines
121 B
Text
6 lines
121 B
Text
|
#!/bin/bash
|
||
|
set -e;
|
||
|
COFFEE=node_modules/.bin/coffee
|
||
|
echo Compiling public/coffee;
|
||
|
$COFFEE -o public/js -c public/coffee;
|