From c092c106f5996a71bf2dc7fb210491d46f9aa39b Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Sun, 19 Feb 2017 10:29:57 +0100 Subject: [PATCH] Save nightlies at the right place #11 --- kiwix-deploy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwix-deploy.py b/kiwix-deploy.py index e60eba0..4569912 100755 --- a/kiwix-deploy.py +++ b/kiwix-deploy.py @@ -21,9 +21,9 @@ FILES_TO_UPLOAD = [ class Archiver: def __init__(self, options): self.options = options - self.working_directory = "nightly_{:%Y-%m-%d}".format(datetime.date.today()) + self.working_directory = "{:%Y-%m-%d}".format(datetime.date.today()) os.makedirs(self.working_directory, exist_ok=True) - self.archive_basename = "kiwix-tools.{:%Y-%m-%d}".format(datetime.date.today()) + self.archive_basename = "kiwix-tools_{:%Y-%m-%d}".format(datetime.date.today()) self.files_to_upload = list(self._gen_file_list()) def _gen_file_list(self):