We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f63509 commit 1a41e19Copy full SHA for 1a41e19
script/upload-symbols.py
@@ -29,6 +29,11 @@ def main():
29
files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb')
30
else:
31
files = glob.glob(SYMBOLS_DIR + '/*/*/*.sym')
32
+
33
+ # The file upload needs to be atom-shell/symbols/:symbol_name/:hash/:symbol
34
+ os.chdir(SYMBOLS_DIR)
35
+ files = [os.path.relpath(f, os.getcwd()) for f in files]
36
37
# The symbol server needs lowercase paths, it will fail otherwise
38
# So lowercase all the file paths here
39
files = [f.lower() for f in files]
0 commit comments