diff --git a/ChangeLog.txt b/ChangeLog.txt index 5620fbf4..d1a76b7a 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,7 @@ +4.5.9 - 10/03/2023 +BugFixed: +- Default build path /tmp/slpkg/build + 4.5.8 - 09/03/2023 Updated: - View the name of the repository instead of the size diff --git a/slpkg/configs.py b/slpkg/configs.py index 46f4d030..e2b8672e 100644 --- a/slpkg/configs.py +++ b/slpkg/configs.py @@ -54,7 +54,7 @@ class Configs: # All necessary paths. tmp_path: str = '/tmp/' tmp_slpkg: str = Path(tmp_path, prog_name) # type: ignore - build_path: str = Path('tmp', prog_name, 'build') # type: ignore + build_path: str = Path('/tmp', prog_name, 'build') # type: ignore download_only_path: str = Path(tmp_slpkg, '') # type: ignore lib_path: str = Path('/var/lib/', prog_name) # type: ignore etc_path: str = Path('/etc/', prog_name) # type: ignore