Merge pull request #13736 from electron/build--make-nightly-filenames-more-guessable-with-YMD-format

build: make nightly filenames more guessable with YMD format
This commit is contained in:
Zeke Sikelianos 2018-07-19 16:23:11 -07:00 committed by GitHub
commit a2ac31a4bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ def main():
args = parse_args()
if args.upload_to_s3:
utcnow = datetime.datetime.utcnow()
args.upload_timestamp = utcnow.strftime('%Y-%m-%d_%H:%M:%S')
args.upload_timestamp = utcnow.strftime('%Y%m%d')
if not dist_newer_than_head():
run_python_script('create-dist.py')