From 11e7f7d60efc5c733ccacfff294f15b78090f835 Mon Sep 17 00:00:00 2001 From: Miguel Serrano Date: Tue, 7 Apr 2020 16:17:51 +0200 Subject: [PATCH] Fixed compile scripts for non-coffee modules (#717) --- server-ce/bin/compile-services | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server-ce/bin/compile-services b/server-ce/bin/compile-services index 017baa8fbc..f20858f812 100755 --- a/server-ce/bin/compile-services +++ b/server-ce/bin/compile-services @@ -12,11 +12,11 @@ grep 'name:' config/services.js | \ web) npm run webpack:production ;; - chat|filestore|notifications|tags) - echo "$service doesn't require a compilation" + real-time|document-updater) + npm run compile:all ;; *) - npm run compile:all + echo "$service doesn't require a compilation" ;; esac popd