chore: ensure boto is initialized so that s3put works
This commit is contained in:
parent
c1705f2789
commit
85464c5b46
2 changed files with 43 additions and 4 deletions
27
DEPS
27
DEPS
|
@ -65,6 +65,33 @@ hooks = [
|
|||
'pattern': 'src/electron/package.json',
|
||||
'name': 'electron_npm_deps'
|
||||
},
|
||||
{
|
||||
'action': [
|
||||
'python',
|
||||
'-c',
|
||||
'import os; os.chdir("src"); os.chdir("electron"); os.system("git submodule update --init --recursive");',
|
||||
],
|
||||
'pattern': 'src/electron',
|
||||
'name': 'electron_submodules'
|
||||
},
|
||||
{
|
||||
'action': [
|
||||
'python',
|
||||
'-c',
|
||||
'import os; os.chdir("src"); os.chdir("electron"); os.chdir("vendor"); os.chdir("boto"); os.system("python setup.py build");',
|
||||
],
|
||||
'pattern': 'src/electron',
|
||||
'name': 'setup_boto',
|
||||
},
|
||||
{
|
||||
'action': [
|
||||
'python',
|
||||
'-c',
|
||||
'import os; os.chdir("src"); os.chdir("electron"); os.chdir("vendor"); os.chdir("requests"); os.system("python setup.py build");',
|
||||
],
|
||||
'pattern': 'src/electron',
|
||||
'name': 'setup_requests',
|
||||
}
|
||||
]
|
||||
|
||||
recursedeps = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue