Fix pylint warnings
This commit is contained in:
parent
4a1b6d76b2
commit
90480fff4e
1 changed files with 4 additions and 2 deletions
|
@ -8,9 +8,10 @@ from lib.util import execute, rm_rf, safe_mkdir, s3put, s3_config
|
||||||
|
|
||||||
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
||||||
SYMBOLS_DIR = 'dist\\symbols'
|
SYMBOLS_DIR = 'dist\\symbols'
|
||||||
|
DOWNLOAD_DIR = 'vendor\\brightray\\vendor\\download\\libchromiumcontent'
|
||||||
PDB_LIST = [
|
PDB_LIST = [
|
||||||
'out\\Release\\atom.exe.pdb',
|
'out\\Release\\atom.exe.pdb',
|
||||||
'vendor\\brightray\\vendor\\download\\libchromiumcontent\\Release\\chromiumcontent.dll.pdb',
|
DOWNLOAD_DIR + '\\Release\\chromiumcontent.dll.pdb',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -33,7 +34,8 @@ def run_symstore(pdb, dest, product):
|
||||||
|
|
||||||
|
|
||||||
def upload_symbols(bucket, access_key, secret_key, files):
|
def upload_symbols(bucket, access_key, secret_key, files):
|
||||||
s3put(bucket, access_key, secret_key, SYMBOLS_DIR, 'atom-shell/symbols', files)
|
s3put(bucket, access_key, secret_key, SYMBOLS_DIR, 'atom-shell/symbols',
|
||||||
|
files)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue