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 6d1a450 commit 6c7260fCopy full SHA for 6c7260f
1 file changed
archinstall/__init__.py
@@ -40,6 +40,11 @@ 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.')
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.')
47
+
48
debug(f'Failed to sync Arch Linux package database: {e}')
49
exit(1)
50
0 commit comments