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

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2020-09-10 10:35:39 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2020-09-10 10:35:39 +0300
commita8106a9c5171e532f7562598efaea378ca630bcb (patch)
tree9b8d93c8052c563beb5eec155f2edd020048ff96
parentd99e4064422a6453535bdd5ee285cfaded0923eb (diff)
install deps on make appstorev3.2.0
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r--3rdparty/vendor/composer/ClassLoader.php2
-rw-r--r--Makefile1
2 files changed, 2 insertions, 1 deletions
diff --git a/3rdparty/vendor/composer/ClassLoader.php b/3rdparty/vendor/composer/ClassLoader.php
index fce8549f..03b9bb9c 100644
--- a/3rdparty/vendor/composer/ClassLoader.php
+++ b/3rdparty/vendor/composer/ClassLoader.php
@@ -60,7 +60,7 @@ class ClassLoader
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
- return call_user_func_array('array_merge', $this->prefixesPsr0);
+ return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
}
return array();
diff --git a/Makefile b/Makefile
index 498ac1e3..ca9d2e1c 100644
--- a/Makefile
+++ b/Makefile
@@ -22,6 +22,7 @@ clean:
rm -rf node_modules
appstore: clean
+ composer install --no-dev -d ./3rdparty/
mkdir -p $(sign_dir)
rsync -a \
--exclude=.drone.yml \