diff --git a/publify/file_doers.py b/publify/file_doers.py index fc55cfb..a9fa5c8 100644 --- a/publify/file_doers.py +++ b/publify/file_doers.py @@ -13,7 +13,7 @@ class NoIndexHtml(Exception): def make_a_zip_file(dirpath: pl.Path) -> pl.Path: - zipfile_filename = str(uuid.uuid4()) + zipfile_filename = "/tmp/" + str(uuid.uuid4()) shutil.make_archive(zipfile_filename, "zip", dirpath) return pl.Path(zipfile_filename + ".zip") diff --git a/setup.py b/setup.py index 5abbd43..095e70d 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name="publify", - version="0.2.1", + version="0.2.2", description="A CLI for publishing sites to Netlify and assigning custom domains to them.", author="Zev Averbach", author_email="zev@averba.ch",