5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 04:34:16 +00:00

feat: poder hacer git lfs checkout

This commit is contained in:
f 2023-04-11 10:42:07 -03:00
parent aaa4608cf7
commit d84975a61a

View file

@ -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