mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-08 21:14:15 +02:00
[core] improvement: do not set '--no-config' when calling wget to avoid certificate issues
This commit is contained in:
@@ -17,6 +17,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
- not detecting some package replacements when upgrading due to conflict information having logic operators (e.g: `at-spi2-core: 2.44.1 -> 2.46.0` should replace the installed `at-spi2-atk: 2.38`)
|
- not detecting some package replacements when upgrading due to conflict information having logic operators (e.g: `at-spi2-core: 2.44.1 -> 2.46.0` should replace the installed `at-spi2-atk: 2.38`)
|
||||||
- Debian
|
- Debian
|
||||||
- not properly handling packages with names ending with `:i386` [#298](https://github.com/vinifmor/bauh/issues/298)
|
- not properly handling packages with names ending with `:i386` [#298](https://github.com/vinifmor/bauh/issues/298)
|
||||||
|
- Packaging
|
||||||
|
- AppImage: download certificate issue [#280](https://github.com/vinifmor/bauh/issues/280)
|
||||||
- GUI
|
- GUI
|
||||||
- management panel not fully maximizing
|
- management panel not fully maximizing
|
||||||
|
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ class AdaptableFileDownloader(FileDownloader):
|
|||||||
return SimpleProcess(cmd=cmd, cwd=cwd, root_password=root_password)
|
return SimpleProcess(cmd=cmd, cwd=cwd, root_password=root_password)
|
||||||
|
|
||||||
def _get_wget_process(self, url: str, output_path: str, cwd: str, root_password: Optional[str]) -> SimpleProcess:
|
def _get_wget_process(self, url: str, output_path: str, cwd: str, root_password: Optional[str]) -> SimpleProcess:
|
||||||
cmd = ['wget', url, '-c', '--retry-connrefused', '-t', '10', '--no-config', '-nc']
|
cmd = ['wget', url, '-c', '--retry-connrefused', '-t', '10', '-nc']
|
||||||
|
|
||||||
if not self.check_ssl:
|
if not self.check_ssl:
|
||||||
cmd.append('--no-check-certificate')
|
cmd.append('--no-check-certificate')
|
||||||
|
|||||||
Reference in New Issue
Block a user