Use lowercase for symbol paths

This commit is contained in:
Cheng Zhao 2014-11-10 23:07:57 +08:00
parent e5e94ed437
commit 6d663d1d01

View file

@ -24,6 +24,7 @@ def main():
bucket, access_key, secret_key = s3_config()
files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb')
files = [f.lower() for f in files]
upload_symbols(bucket, access_key, secret_key, files)