mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 22:54:16 +02:00
[arch] fix -> not skipping dependency checking when the user opts to proceed with a transaction that would break other packages
This commit is contained in:
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
## [0.9.16]
|
||||||
|
### Fixes
|
||||||
|
- Arch
|
||||||
|
- not skipping dependency checking when the user opts to proceed with a transaction that would break other packages
|
||||||
|
|
||||||
|
|
||||||
## [0.9.15] 2021-03-03
|
## [0.9.15] 2021-03-03
|
||||||
### Improvements
|
### Improvements
|
||||||
- UI
|
- UI
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
__version__ = '0.9.15'
|
__version__ = '0.9.16'
|
||||||
__app_name__ = 'bauh'
|
__app_name__ = 'bauh'
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|||||||
@@ -723,7 +723,7 @@ def upgrade_several(pkgnames: Iterable[str], root_password: str, overwrite_confl
|
|||||||
cmd.append('--overwrite=*')
|
cmd.append('--overwrite=*')
|
||||||
|
|
||||||
if skip_dependency_checks:
|
if skip_dependency_checks:
|
||||||
cmd.append('-d')
|
cmd.append('-dd')
|
||||||
|
|
||||||
return SimpleProcess(cmd=cmd,
|
return SimpleProcess(cmd=cmd,
|
||||||
root_password=root_password,
|
root_password=root_password,
|
||||||
|
|||||||
Reference in New Issue
Block a user