mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-18 10:26:29 +01:00
Bugfixes default build path
This commit is contained in:
parent
9c4ba902d5
commit
7817367266
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
4.5.9 - 10/03/2023
|
||||||
|
BugFixed:
|
||||||
|
- Default build path /tmp/slpkg/build
|
||||||
|
|
||||||
4.5.8 - 09/03/2023
|
4.5.8 - 09/03/2023
|
||||||
Updated:
|
Updated:
|
||||||
- View the name of the repository instead of the size
|
- View the name of the repository instead of the size
|
||||||
|
|
|
@ -54,7 +54,7 @@ class Configs:
|
||||||
# All necessary paths.
|
# All necessary paths.
|
||||||
tmp_path: str = '/tmp/'
|
tmp_path: str = '/tmp/'
|
||||||
tmp_slpkg: str = Path(tmp_path, prog_name) # type: ignore
|
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
|
download_only_path: str = Path(tmp_slpkg, '') # type: ignore
|
||||||
lib_path: str = Path('/var/lib/', prog_name) # type: ignore
|
lib_path: str = Path('/var/lib/', prog_name) # type: ignore
|
||||||
etc_path: str = Path('/etc/', prog_name) # type: ignore
|
etc_path: str = Path('/etc/', prog_name) # type: ignore
|
||||||
|
|
Loading…
Reference in a new issue