Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-01-15 15:52:32 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-01-15 15:52:32 +0300
commit8d4892b573f66fe91d86d2d35eec7a51e871d168 (patch)
tree357cad814ef1893917e31971765075463593cfa6 /krankerl.toml
parentb90150122a4a57a31dbd87fb19bda0da063a9c82 (diff)
Install composer deps with -o flag to fix an autoloading error
For an yet unknown reason, composer suddenly fails to load the UrlLinker class if dependencies haven't been installed with the optimize flag. Ref #697 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'krankerl.toml')
-rw-r--r--krankerl.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/krankerl.toml b/krankerl.toml
index 91d0f47a0..e04693189 100644
--- a/krankerl.toml
+++ b/krankerl.toml
@@ -1,6 +1,6 @@
[package]
before_cmds = [
- "composer install --no-dev",
+ "composer install --no-dev -o",
"npm install --deps",
"npm run build",
]