5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-01 22:46:07 +00:00

fix: typo

This commit is contained in:
f 2023-03-27 14:08:19 -03:00
parent da192ef14c
commit 57542c92a7

View file

@ -123,15 +123,15 @@ class DeployLocal < Deploy
run 'yarn install --production', output: output
end
def bundle(output: false)
run %(bundle install --no-cache --path="#{gems_dir}" --clean --without test development), output: output
end
def pnpm
def pnpm(output: false)
return true unless pnpm_lock?
run %(pnpm config set store-dir "#{pnpm_cache_dir}")
run 'pnpm install --production'
run %(pnpm config set store-dir "#{pnpm_cache_dir}"), output: output
run 'pnpm install --production', output: output
end
def bundle(output: false)
run %(bundle install --no-cache --path="#{gems_dir}" --clean --without test development), output: output
end
def jekyll_build(output: false)