From bd38c1a487b886e18ec2367444b210287caa9db9 Mon Sep 17 00:00:00 2001 From: Lerk Date: Tue, 21 Apr 2020 22:09:55 +0200 Subject: [PATCH] Fix bundle config commands (#766) --- content/en/admin/install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/admin/install.md b/content/en/admin/install.md index d718a9d8..e77d22ce 100644 --- a/content/en/admin/install.md +++ b/content/en/admin/install.md @@ -138,8 +138,8 @@ git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1) Now to install Ruby and JavaScript dependencies: ```bash -bundle config set deployment 'true' -bundle config set without 'development test' +bundle config deployment 'true' +bundle config without 'development test' bundle install -j$(getconf _NPROCESSORS_ONLN) yarn install --pure-lockfile ```