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:18:17 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2020-09-10 10:18:17 +0300
commit6d6a14e5a0ada07d34eb006d55f79a533956cc62 (patch)
tree6de95afd749623111c97d3f2e3fa93b0bd07b7a8
parent1c6064ba3de74396f457123616a164d9f758e2c7 (diff)
install deps on make appstorev3.1.3
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 \