mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 06:41:41 +00:00
feat: poder hacer git lfs checkout
This commit is contained in:
parent
aaa4608cf7
commit
d84975a61a
1 changed files with 6 additions and 0 deletions
|
@ -14,6 +14,7 @@ class DeployLocal < Deploy
|
|||
# Sutty
|
||||
def deploy(output: false)
|
||||
return false unless mkdir
|
||||
return false unless git_lfs(output: output)
|
||||
return false unless yarn(output: output)
|
||||
return false unless pnpm(output: output)
|
||||
return false unless bundle(output: output)
|
||||
|
@ -113,6 +114,11 @@ class DeployLocal < Deploy
|
|||
File.exist? pnpm_lock
|
||||
end
|
||||
|
||||
def git_lfs(output: false)
|
||||
run %(git lfs fetch), output: output
|
||||
run %(git lfs checkout), output: output
|
||||
end
|
||||
|
||||
def gem(output: false)
|
||||
run %(gem install bundler --no-document), output: output
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue