[packages] Make package-installation messages slightly less scary.

From a test with XeroLinux, at some point it says 'reinstalling linux...'
which is a message from pacman about the package called 'linux'.
This commit is contained in:
Adriaan de Groot 2021-11-09 15:25:06 +01:00
parent e4b44b5f85
commit 2a86e86817

View File

@ -389,7 +389,7 @@ class PMPacman(PackageManager):
# lines in the output for the group, than packages listed
# explicitly. We don't know how to calculate proper progress.
global custom_status_message
custom_status_message = line.strip()
custom_status_message = "pacman: " + line.strip()
libcalamares.job.setprogress(self.progress_fraction)
libcalamares.utils.debug(line)