mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 07:21:41 +00:00
fix: darle bola a los mensajes de deprecación de bundler #13610
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
se configuraban las opciones que le pasábamos pero no se aplicaban en el comando actual, con lo que quería instalar las gemas globalmente y fallaba la creación de sitios.
This commit is contained in:
parent
8d7d1c10b1
commit
6e42472067
1 changed files with 6 additions and 1 deletions
|
@ -138,7 +138,12 @@ class DeployLocal < Deploy
|
|||
end
|
||||
|
||||
def bundle(output: false)
|
||||
run %(bundle install --deployment --no-cache --path="#{gems_dir}" --clean --without test development), output: output
|
||||
run %(bundle config set --local clean 'true'), output: output
|
||||
run %(bundle config set --local deployment 'true'), output: output
|
||||
run %(bundle config set --local path '#{gems_dir}'), output: output
|
||||
run %(bundle config set --local without 'test development'), output: output
|
||||
run %(bundle config set --local cache_all 'false'), output: output
|
||||
run %(bundle install), output: output
|
||||
end
|
||||
|
||||
def jekyll_build(output: false)
|
||||
|
|
Loading…
Reference in a new issue