Bugfixes default build path

This commit is contained in:
Dimitris Zlatanidis 2023-03-10 13:10:53 +02:00
parent 9c4ba902d5
commit 7817367266
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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