mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #448 from sharelatex/as-fix-module-compile
Fix module compile_full failing if module don't have app/coffee
This commit is contained in:
commit
a0ae178af7
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ compile: $(APP_JS_FILES) $(IDE_JS_FILES) $(MAIN_JS_FILES) $(IDE_TEST_JS_FILES) i
|
||||||
@echo > /dev/null
|
@echo > /dev/null
|
||||||
|
|
||||||
compile_full:
|
compile_full:
|
||||||
$(COFFEE) -o app/js -c app/coffee
|
if [ -e app/coffee ]; then $(COFFEE) -o app/js -c app/coffee; fi
|
||||||
if [ -e test/unit/coffee ]; then $(COFFEE) -o test/unit/js -c test/unit/coffee; fi
|
if [ -e test/unit/coffee ]; then $(COFFEE) -o test/unit/js -c test/unit/coffee; fi
|
||||||
if [ -e test/acceptance/coffee ]; then $(COFFEE) -o test/acceptance/js -c test/acceptance/coffee; fi
|
if [ -e test/acceptance/coffee ]; then $(COFFEE) -o test/acceptance/js -c test/acceptance/coffee; fi
|
||||||
if [ -e public/coffee/ide/ ]; then $(COFFEE) -o ../../public/js/ide/$(MODULE_NAME) -c public/coffee/ide/; fi
|
if [ -e public/coffee/ide/ ]; then $(COFFEE) -o ../../public/js/ide/$(MODULE_NAME) -c public/coffee/ide/; fi
|
||||||
|
|
Loading…
Reference in a new issue