Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pycpio"
version = "1.4.0"
version = "1.4.1"
authors = [
{ name="Desultory", email="[email protected]" },
]
Expand All @@ -16,7 +16,7 @@ classifiers = [
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]
dependencies = ["zenlib >= 2.3.0"]
dependencies = ["zenlib >= 2.3.2"]

[project.scripts]
pycpio = "pycpio.main:main"
Expand Down
2 changes: 1 addition & 1 deletion src/pycpio/cpio/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def from_dir(path: Path, parent=None, relative=False, *args, **kwargs):
if relative is True:
relative = path

if relative is not False:
if relative: # If it's not false, none, or an empty string
relative = Path(relative).resolve()

if relative:
Expand Down
Loading