5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 12:26:07 +00:00

Merge branch 'issue-1849' into panel.sutty.nl

This commit is contained in:
f 2022-12-29 16:40:40 -03:00
commit 542c4ad1b3

View file

@ -114,6 +114,11 @@ class DeployLocal < Deploy
# XXX: Desde que ya no compartimos el directorio de gemas, tenemos
# que hacer limpieza después de instalar.
run %(bundle install --no-cache --path="#{gems_dir}" --clean --without test development), output: output
# Eliminar archivos que no se usan
Dir.glob("#{gems_dir}/ruby/2.7.0/{cache/*,gems/*/{spec,test,ext,vendor}}").each do |dir|
FileUtils.rm_rf(dir)
end
end
def jekyll_build(output: false)