mirror of
https://0xacab.org/sutty/sutty
synced 2025-02-21 12:01:47 +00:00
fix: typo
This commit is contained in:
parent
da192ef14c
commit
57542c92a7
1 changed files with 7 additions and 7 deletions
|
@ -123,15 +123,15 @@ class DeployLocal < Deploy
|
||||||
run 'yarn install --production', output: output
|
run 'yarn install --production', output: output
|
||||||
end
|
end
|
||||||
|
|
||||||
def bundle(output: false)
|
def pnpm(output: false)
|
||||||
run %(bundle install --no-cache --path="#{gems_dir}" --clean --without test development), output: output
|
|
||||||
end
|
|
||||||
|
|
||||||
def pnpm
|
|
||||||
return true unless pnpm_lock?
|
return true unless pnpm_lock?
|
||||||
|
|
||||||
run %(pnpm config set store-dir "#{pnpm_cache_dir}")
|
run %(pnpm config set store-dir "#{pnpm_cache_dir}"), output: output
|
||||||
run 'pnpm install --production'
|
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
|
end
|
||||||
|
|
||||||
def jekyll_build(output: false)
|
def jekyll_build(output: false)
|
||||||
|
|
Loading…
Reference in a new issue