From 038b09b0b0efe138878742bb57970dcc4445c872 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 3 Sep 2015 14:55:26 +0200 Subject: [PATCH] Proper details about git submodule update * fixes #18801 --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index 9cf0228bbd..077ecfa466 100644 --- a/lib/base.php +++ b/lib/base.php @@ -540,7 +540,7 @@ class OC { // setup 3rdparty autoloader $vendorAutoLoad = OC::$THIRDPARTYROOT . '/3rdparty/autoload.php'; if (!file_exists($vendorAutoLoad)) { - throw new \RuntimeException('Composer autoloader not found, unable to continue. Check the folder "3rdparty".'); + throw new \RuntimeException('Composer autoloader not found, unable to continue. Check the folder "3rdparty". Running "git submodule update --init" will initialize the git submodule that handles the subfolder "3rdparty".'); } require_once $vendorAutoLoad;