We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b76833 commit 22930a9Copy full SHA for 22930a9
1 file changed
archinstall/__init__.py
@@ -40,10 +40,10 @@ def _fetch_arch_db() -> None:
40
try:
41
Pacman.run('-Sy')
42
except Exception as e:
43
- error("Failed to sync Arch Linux package database.")
+ error('Failed to sync Arch Linux package database.')
44
if 'could not resolve host' in str(e).lower():
45
- error("Most likely due to a missing network connection or DNS issue.")
46
- error("Run archinstall --debug and check /var/log/archinstall/install.log for details.")
+ error('Most likely due to a missing network connection or DNS issue.')
+ error('Run archinstall --debug and check /var/log/archinstall/install.log for details.')
47
48
debug(f'Failed to sync Arch Linux package database: {e}')
49
exit(1)
0 commit comments