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 17:51:04 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-01-15 17:51:04 +0300
commit539f37b5ab442262f91bb01388c31a76af2f8b6f (patch)
tree1a933a7c2329a1597b9ea6116b663b8b1adcc429 /Makefile
parent2086f8bab27d6372d8a335beb086d0333ada754c (diff)
Fix Makefile's dev-setup and composer install
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4bc8dfe81..6fbc80020 100644
--- a/Makefile
+++ b/Makefile
@@ -24,10 +24,10 @@ composer.phar:
install-deps: install-composer-deps-dev install-npm-deps-dev
install-composer-deps: composer.phar
- php composer.phar install --no-dev
+ php composer.phar install --no-dev -o
install-composer-deps-dev: composer.phar
- php composer.phar install
+ php composer.phar install -o
install-npm-deps:
npm install --production
@@ -38,7 +38,7 @@ install-npm-deps-dev:
optimize-js: install-npm-deps-dev
./node_modules/webpack/bin/webpack.js --config js/webpack.prod.config.js
-dev-setup: install-composer-deps-dev install-npm-deps-dev
+dev-setup: install-composer-deps-dev install-npm-deps-dev optimize-js
start-imap-docker:
docker pull $(docker_image)