summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-02-16 01:04:08 -0600
committerMike Greiling <mike@pixelcog.com>2017-02-16 01:04:08 -0600
commit2f0d0b510d6542dc3a2758d5664e19f0b5b3c603 (patch)
treed77218cd00f4f6117c658b5ce53b20164d19e0f2 /lib
parenteca18c0bd108033d1e852b2ce8010ee01c259528 (diff)
downloadgitlab-ce-2f0d0b510d6542dc3a2758d5664e19f0b5b3c603.tar.gz
do not use --force command argument for yarn
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/yarn.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/yarn.rake b/lib/tasks/yarn.rake
index 351f6887f7b..2ac88a039e7 100644
--- a/lib/tasks/yarn.rake
+++ b/lib/tasks/yarn.rake
@@ -24,7 +24,7 @@ namespace :yarn do
desc 'Install Node dependencies with Yarn'
task install: ['yarn:available'] do
- unless system('yarn install --force --pure-lockfile --ignore-engines')
+ unless system('yarn install --pure-lockfile --ignore-engines')
abort 'Error: Unable to install node modules.'.color(:red)
end
end