From 9b91d632e0ef8fb13be2c1f89222e599e471191b Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Thu, 19 Jul 2018 14:12:12 -0700 Subject: [PATCH] build: make nightly filenames more guessable with YMD format --- script/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/upload.py b/script/upload.py index 6d71fc69d4d7..7809d65dd738 100755 --- a/script/upload.py +++ b/script/upload.py @@ -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')